So now that we've mastered ranges, we can go into for loops, which are great when we know exactly how many times we want the loop to run.

Huzzah! The for loop uses a temporary control variable and says: for every number in the range, repeat what's between the loop and the end keyword.

Psst: we can use any name we like for the control variable. Many folks use i, for example.

Yikes! Didn't we say that we want to use a for loop. A good way to remember when to use a for loop is to check if a range is also used.