Like we saw last lesson, we can't access private properties directly from outside the class.
Instead, we use a public property with get and set accessors.
As you'd expect, get allows us to get the property with .color, and set allows us to set it with .color =.