The methods that we define in a class are only available to the class and to instances of the class. With that in mind, what do you think this code snippet will display?

Whoa! Well, explorer isn't really an instance of the Explorer but of the String class, so the it doesn't know anything about the eat method.

Psst: as explorer is a string, we can use methods like length on it.