Why Loops Exist
A loop prevents you from copying the same action many times when only the state of each repetition changes.
If you want to show the numbers from 1 to 5, you could write five `console.log()` statements. But that does not scale and does not teach the program how to repeat with intention.
A loop solves that: it defines a repetition, a control rule, and a stopping point.