We can create as many subclasses of Animal as we want. They'll all have access to the properties of the Animal class.

Make the Bird class inherit from the Animal class and call eat() on a Bird object.

Make sure to start by putting together Bird extends Animal. Then, insert the method call.