Introduction
The enhanced for loop helps you go through all items in a list or array easily without using a counter.
When you want to print all items in a list of names.
When you need to add up all numbers in an array.
When you want to check each element in a collection one by one.
When you want to avoid mistakes with counting indexes in loops.