Concept Flow - For loop with ranges
Start
Set range start..end
For each value in range
Execute loop body
Next value in range?
No→Exit loop
↩Back to Execute loop body
The loop starts by defining a range, then runs the loop body for each value in that range, moving to the next value until the end.