Concept Flow - Array iteration and enumerated
Start with array
Begin iteration
Get index and element
Use index and element
Move to next element
More elements?
Yes→Repeat
No
End iteration
This flow shows how Swift goes through each item in an array, getting both the position (index) and the value (element) to use inside the loop.