Concept Flow - For loop over collections
Start
Get collection
Take first element
Execute loop body with element
More elements?
No→End
Yes
Take next element
The loop starts by getting the collection, then takes each element one by one, runs the loop body, and repeats until no elements remain.