CODE:
for (int i =0; i<=10; i++) {
System.out.println(movieasArrayList.get(i).getID() + " " + movieasArrayList.get(i).getAction());
}
QUESTION:
Change this for-loop
to a for-each loop
to perform the same task for all Movies (not just first 11).
Any help will be appreciated!!