Build a game for yourself to test how quickly you can calculate multiples of a number! 1. When the green flag is pressed, create a variable and set it to a random number between 1 and 10. This will be the number we want multiples of. 2. Make a list to keep track of which multiples the player has entered, and a variable to keep track of their score. 3. Have the wizard introduce the game and then start asking for multiples of your number continuously. 4. Check if their answer is a multiple of that number, and also check if this multiple has already been entered. Play a noise, update the score, and update the list accordingly, depending on whether their guess counts toward their score. 5. It would be more challenging if this game were timed! Create a timer variable and give the user 30 seconds to play the game.