I am having trouble trying with all of question 5(picture of questions attached). I'm not sure what to write for question 5. Any help would be great! This is my first time posting!
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println("The Program is Starting...");
PolarBear polarBear = new PolarBear();
String[] week = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday"};
for (String daysOfWeek : week) {
System.out.println (daysOfWeek) ;
}
Random randomGenerator = new Random();
this.
System.out.println("PolarBear Calories:" + polarBear.getCalorieBank());
System.out.println("The"
+ " Program Will Loop Through the Days of the Week");
System.out.println("Program complete.");
}
}