Which code snippet is the correct way of creating a new object using the Car class?
Car
new Car("Tesla", "Model S");
Car("Tesla", "Model S");
To correctly create an object by using the Car class we need to use the word new.
new