1. Edit the code here - currently it will change the ball to green or blue, can you edit it so that if the user inputs *any other color* like orange or brown, the ball will say "Sorry I can't turn that color!!" 2. Can you add another conditional so that if the user inputs "purple", the ball will actually turn purple? Add the other cases too (Yellow, Pink) HINT: There are multiple solutions! Here are some options: - Use IF THEN / ELSE statements instead of the IF statements! You can also nest them instead of each other! - Use OR statements and join them together! - Use OR and NOT statements together!