public class raceCar{
    private String driver;
    private String car;
    public raceCar(String driver, String car){
        this.driver = driver;
        this.car = car;
    }
}
I need to pass in two strings in the constructor, but the constructor needs to check that the string is a number between 0 and 99, If it is not, set it to "00".
 
     
     
     
    