My data is Like this:
Smith, Bob; Data; More Data
Doe, John; Data; More Data
If you look below you'll see that I'm trying to split the FullName into first and last. The error is:
"The method split(String) in the type String is not applicable for the arguments (char)"
String line = scanner.nextLine();
String[] data = line.split(";");
String[] fullName = data[0].split(',');