public class Car { String carName; int carSpeed; Car(String carName, int carSpeed) { this.carName = carName; this.carSpeed = carSpeed; } }