Your mission is to make a game. I don't expect you to get all the points. Points * Draws a sceen * Prints the (X,Y) where you clicked. * Tells you to go up/down to get to the secret point * Tells you to go left/right to get to the secret point * Tells you if your near or far from the secret point * Tells you if you hit the secret point * The secret point is random each time you play (but not each click). * Has a cheat mode somehow. * Lose when you try six times. * Something moves. Hint: // Chose a secret number between 0 .. 799. int secretX = (int)(Math.random() * 800); // Choose a secret number between 0 .. 599). int secretY = (int)(Math.random() * 600); Due: Wed Sep 21. -1 point per day (-3 max) Total: 10 points.