Let's make a game where you control a bowl and try to collect various items! 1. Start by programming the bowl so that it can be controlled by the arrow keys once the green flag is clicked. 2. When a sprite is touched by the bowl, make it broadcast a message (like "Cheese touched", for example). 3. Think about what each sprite should do when it receives these messages. Should they move? Make a sound? What should the bowl do? 4. Add variables to your program that keep track of the number of times each object has been collected. 5. Add a timer that stops the game after 15 seconds. When the timer runs out, broadcast a message that makes all sprites on the screen do something (e.g. spin in a circle, grow and shrink, etc.).