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