My problem is this
Scanner sf = new Scanner(f);
ArrayList<String> teamArr = new ArrayList<String>();
int counterPopulate = 0;
while(sf.hasNextLine()){
teamArr[counterPopulate] = sf.nextLine();
counterPopulate++;
}
Any solutions, this is surrounded by a try catch.
Getting the problem at this part teamArr[counterPopulate] = sf.nextLine();