0:00:00.000,0:00:02.915 Computers are really good at repeating actions. 0:00:03.322,0:00:07.742 You can count to ten, or twenty or one hundred... 0:00:07.742,0:00:11.422 But a computer can count to a billion or even a trillion. 0:00:11.422,0:00:14.791 It won't get bored and it will only take a few seconds. 0:00:15.621,0:00:22.282 Whether it's counting or drawing or anything, [br]Computers can repeat things hundreds or even billions of times. 0:00:22.282,0:00:25.965 In programming, we call this a loop. 0:00:25.981,0:00:30.185 A loop is how you repeat your code over and over again. 0:00:30.190,0:00:35.855 For the next puzzle,[br]your goal is to help Anna to create a square with the repeat block. 0:00:35.855,0:00:42.977 Any blocks of code you put inside a repeat block, [br]will be repeated in sequence, as many times as you want. 0:00:42.977,0:00:48.281 To draw a square, you can use the "move forward" and "turn" block 4 times. 0:00:48.281,0:00:58.533 The easier way is to tell the computer to move forward and turn by 90 degrees once [br]and then tell the computer to repeat these actions four times. 0:00:59.064,0:01:04.414 To do that, you need to place the move forward and turn right in a repeat block. 0:01:04.414,0:01:11.551 Remember, you can change the number in the repeat-block to anything, and it will repeat the actions in the block that many times. 0:01:12.111,0:01:16.621 [ Anna draws a square with her Foot ]