On the next line, don’t forget to assign dogsAge to age.
Exercise 7. Objects is where you use your new constructor to create a new Dog object. You’ve got that line a bit mixed up. You have this:
Dog Dog = new Dog(spike);
To create a Dog named spike you would start off with:
Dog spike =
Then you would use new Dog() to pass spike’s age in as a parameter rather than his name. Remember the constructor, it is expecting you to send it a dogsAge, not a dogsName.