Why this doesn't work?
class Faculty extends Employee
{
private long[] officeHours;
private String rank;
public Faculty(long[] hours, String rank)
{
this.officeHours = hours;
this.rank = rank;
}
public static void main(String[] args){
//some code here
Faculty f = new Faculty(newToken[], tokens[tokens.length-1]);