Perfect! By adding the private keyword to hunger, we're shielding it from being accessed from outside of its scope, the Dog class.
private
hunger
Dog
Because the hunger variable is private, don't we have to use eat() instead?
eat()