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?<
In Java 8
public void printMeals() { this.meals.stream().forEach(System.out::println); }