Micro:bit MadeCode
Please make sure to use use Google Chrome.
When programming with the Microbit, program flow is like planning a path for your code. It means the sequence in which the instructions run, starting from the top and going step by step to the end. Normally, code runs in a straight line—one instruction after another, like reading a book page by page.

To make instructions repeat, we use loops. Loops let you repeat a section of code many times without writing it over and over. For example: "forever" (which keeps going until you stop it) or "repeat n times" (executing a set number of iterations).