Let's dig deeper and create a class! We start with the class keyword followed by the class's name. Everything we put in the braces becomes a part of the class.

Sweet! This class describes cars with a color variable and a StartEngine () method.

Psst: we didn't have to use the static keyword for StartEngine () because we created an instance of the Car class.

That would be a great method to have later on, but let's use existing method for now, shall we?