<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.>
https://www.codecademy.com/en/courses/learn-java/lessons/object-oriented-programming/exercises/methods-2?action=lesson_resume&link_content_target=interstitial_lesson
<In what way does your code behave incorrectly? Include ALL error messages.>
No 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(3);
spike.bark();
spike.run(69);
}
}
<do not remove the three backticks above>