Not sure why this won’t work, im not getting an error message but according to code academy im doing something wrong. Anyone?
<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
```class Dog {
int age;
public Dog(int dogsAge) {
age = dogsAge;
}
public void bark() {
System.out.println(“Woof!”);
}
public void run(int feet) {
System.out.println("Your dog ran " + feet + " feet!");
}
public static void main(String args) {
Dog spike = new Dog(5);
spike.bark();
spike.run(500);
}
}
<do not remove the three backticks above>