```cs Car car1 = new Car("ford", "mustang", 2022, "red"); Car car2 = new Car("idk", "idk", 2001, "idk"); Console.WriteLine(); Console.ReadLine(); car1.Drive(); class Car { string make; string model; int year; string colour; public static int numberOfCars; public Car(string make, string model, int year, string colour) { this.make = make; this.model = model; this.year = year; this.colour = colour; numberOfCars++; } public void Test() { Console.WriteLine(numberOfCars); } public void Drive() { Console.WriteLine("You drive the " + make + " " + model); Console.ReadLine(); } } ```