AtoCSeat userSelection = userInput.nextLine(); // won't work as nextLine() looks for Strings

The above will not work because the nextLine() method of scanner returns a String. If you wish to...