One of the variables of the object keeps a reference to that object's message.
Here is what we have so far for HelloObject:
class HelloObject
{
void speak()
{
System.out.println("Hello from an object!");
}
}
Here is a start on improving HelloObject:
class HelloObject
{
__________ _____________ ; // keep the object's message here
void speak()
{
System.out.println( _________________ ); // print the object's message
}
}