private members can only be accessed in the class they have been declared. We can't accesscolor!
private
class
color
public methods can be accessed from anywhere in the program. We can access.StartEngine ()!
public
.StartEngine ()
Maybe the correct answer is private?