Introduction
A repeat loop runs code over and over until you tell it to stop. You use break to stop the loop when you want.
When you want to keep asking a user for input until they give a valid answer.
When you want to repeat a task until a certain condition happens, like reaching a target number.
When you don't know how many times you need to repeat, but you want to stop based on a condition inside the loop.