I\'m doing the MOOC java course, and I\'m stuck on exercise 76. Whenever I submit the answer it tells me to print each meal to a seperate line. How would I go about doing this?<
Just iterate over the list and print each item seperately:
public void printMeals() { for(String meal : meals) { System.out.println(meal); } }