Caitlyn wants to move the cat with her keyboard. The left arrow key moves the cat left, and the right arrow moves the cat to the right. She also wants the cat to say where it is on the screen based on which colour it is touching.
Caitlyn's cat moves correctly when she presses the arrow keys. However, the cat doesn't say it's position correctly. How can you change the code so that the cat will tell us where it is of the screen it is on after it moves? *Hint 1*: Try to move code blocks around rather than deleting them. You never know if that code may be useful later. *Hint 2*: It may be easier to split the problem up into pieces 1. The cat doesn't change what it is saying after it moves. How could you fix that? 2. The cat doesn't say that it is in the middle when it is touching both colours. How can I get that to happen? These 2 parts can be done in whichever order you think makes sense, but focusing on just one thing at a time will make it easier to solve.