How do you like this line? Cat cat = new Cat(); At first, it's confusing: why are there cats and both sides, and why is it so complicated? In fact, this is the standard way to create an instance (object) of the Cat class, named cat. The keyword new signals that we are creating a new "cat". This lesson has the details about creating cats and other objects.