Now, let's write some code to show all your pages in a row! When you hit the "space" key, you should be able to see all the backdrops you made. What code blocks do you think will be important here?
First, we'll need to add an event that checks if the space key is pressed and sets the background to January. Drag in a "when ____ key pressed" block from the yellow Events section. Then drag in a "switch backdrop to _____" block from the dark purple Looks section and make sure it's set to January.
We want to go through each backdrop, but if we do it too quickly, we won't see anything. So we should wait for a bit each time before switching. Drag in a "wait __ seconds" block from the orange Control section and then drag in a "next backdrop" block from the dark purple Looks section. Then do it again by draging in another "wait __ seconds" block and "next backdrop" block.
Do you see any code repeating at all? There's a pattern of "wait 1 second" and "next backdrop" that happens twice! Anytime you see repeating code, it's not good. It means it's going to take a lot of work if we want to add 3 more backdrops. You can fix this problem with loops! Add a "repeat ___" loop from the orange Control section and wrap it around the two repeating blocks of code. Then you can just change the number of times the loop repeats instead of dragging in the same code over and over again.