Concept Flow - For-in loop with collections
Start with collection
Pick first item
Execute loop body with item
More items?
No→Exit loop
Yes
Pick next item
↩Back to Execute loop body
The loop picks each item from the collection one by one and runs the code inside the loop for each item until all items are done.