So here is what happens Employee is created every-time the class runs and totEmployee is the counter that increments each time the class is called. So I am unsure how to change e1 (bolded) each time the statement is incremented. I can't use empnumber to name each new Employee created. Anyone know how to accomplish this?
String empnumber = "e" + totEmployee; Employee e1 = new Employee(eID, fN, lN, jT, gend, wag); totEmployee ++;