I'm trying to debug these weird artifacts
this code ```java
public static void main(String[] args) throws FileNotFoundException {
//csv file
String CSVfileName = "PizzaInfo.csv";
System.out.println("Reading CSV file");
try {
//Open and read the file
File file = new File(CSVfileName);
Scanner input = new Scanner(file);
System.out.println("************");
//Retrieve the each car record display.
while (input.hasNextLine()) {
String line = input.nextLine();
int length = line.length();
String fields[] = line.split(",");
String fieldOne = fields[0];
String fieldTwo = fields[1];
String fieldThree = fields[2];
System.out.format("%-12s%-25s%-8s%n", fieldOne, fieldTwo, fieldThree);
}
System.out.println("****End Reading****");
input.close();
//Exception thrown if file name entered is incorrect.
} catch (FileNotFoundException e) {
System.err.println("Error: Could not open file " + CSVfileName + ". Exiting...");
}
}```