We've seen constructors throughout the course, haven't we? They're the methods we call when we create an instance of a class.

Sweet! By calling the constructor of the Car class, we're creating an instance of it that we store in myCar.

Didn't we create a new instance of a class with the new keyword?