Hello 134 Students. Two small items related to the Programming Project: 1. The description of "Popping Up All Over" mentions that the screen should clear when the mouse leaves and then re-enters the canvas. We accidentally omitted the code to do that in the starter. Simply add the following method to Spring.java: public void onMouseEnter(Location pt) { canvas.clear(); } 2. To play audio clips in "Three Cow Monty", please ensure that the following import statement appears at the top of your WindowController: import java.applet.*; Including this line will allow you to use the Audio class in your program. Thanks! Steve and Brent