So this is what i am trying to do. Create just a 5 element array and using the scanner utility get some information from the user that can then be passed down to an object that is dynamically created by the array. The object requires paramaters due to constructors.
Employee[] emp = new Employee[5];
Scanner sc = new Scanner(System.in)
So yeah i am completely stuck and not to sure which way to go with this. Help would be awesome while i continue to search the web for answers.