Concept Flow - Foreach loop over collections
Start with collection
Pick first item
Execute loop body with item
More items?
No→Exit loop
Yes
Pick next item
The foreach loop picks each item from a collection one by one and runs the loop body using that item until all items are processed.