Programming Challenge: Make a guess the number game. Constraints: 1. The mystery number should be a random number from 1-10. 2. The mystery number should be randomly chosen each time the program is run. 3. The player has three chances to guess the number. If they don't guess it in three attempts, the program shows a lose screen. 4. If their answer is incorrect, the program tells them if it is too high or too low. If their answer is correct, the program displays a win screen. Extension Challenge: Add different difficulty levels. Constraints: 1. At the beginning of the game, the player should be able to choose between easy, medium, and hard difficulty levels. 2. Easy level should be 1-10. 3. Medium level should be 1-25. 4. Hard level should be 1-50.