When we create classes and their members, visibility is important! There are five access specifiers in C#, but all you need right now are public or private.

private members can only be accessed in the class they have been declared. We can't accesscolor!

public methods can be accessed from anywhere in the program. We can access.StartEngine ()!

Maybe the correct answer is private?