Let’s make a whack-a-mole style game, where you have one minute to get as many points as possible. 1. Let's start with the code for the hammer. When the green flag is clicked, make the hammer go to the mouse-pointer forever. 2. If the mouse is down, then make the hammer switch to the smash costume and play the whoosh sound. 3. Program the code for the spider. When the green flag is clicked, make the spider go to a random position and then wait two seconds (doing this forever). 4. There are two conditions that need to be true for the spider to be smashed (and for us to get a point!). Check forever if the mouse is down and if the spider is touching the hammer. 5. When these things are true, then add a point to the score, make the spider go to a random location, and play the "crunch" sound. 6. Add a timer so that you only have a certain amount of time to get as many points as possible.