Concept Flow - ForEach loop
Start with collection
Pick next item
Execute loop body with item
More items?
No→Exit loop
↩Back to Pick next item
The ForEach loop picks each item from a collection one by one, runs the loop body using that item, and repeats until all items are processed.