Concept Flow - Enhanced for loop
Start with array or collection
Pick next element
Execute loop body with element
More elements?
No→Exit loop
↩Back to Pick next element
The enhanced for loop goes through each item in a collection or array one by one, running the loop body for each item until all are done.