A loop repeats work
A loop tells the computer to repeat some instructions.
Instead of writing SHOW 1, SHOW 2, SHOW 3, and so on, we can store a counter, repeat while it is within our limit, and add one each time.
Every repeating loop needs a way to stop. Otherwise it can repeat forever.
Try it: If a counter starts at 1 and you add one after every repetition, what condition would make it stop after displaying 10?