It shows a message error, even though there’s nothing wrong with it.
In between the bark and main methods, add a method called run to the Dog class by typing:
public void run() {
}
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(12);
spike.bark();
spike.run(10);
}
}
How to fix it?