Welcome to the Wheel of Fortune! In this game, the user has a certain number of guesses to guess every letter of the secret word. 1. Construct a word bank using a list, from which the computer will choose a random word of at the beginning of each game. 2. Once the secret word is decided, add all the letters of the word to a new list and count the total number of unique letters in the word. Use this variable to keep track of the total number of letters the user needs to guess correctly. As you are adding the letters, make sure you don't add the same letter twice. 3. Ask the user to guess a letter. If they guess a letter that is in the secret word (and they have not already guessed this letter), add this letter to the guess list and update the variable you are using to keep track of how many correct guesses the user has made. 4. Allow the user a certain number of guesses to win the game (for example, the length of the word, plus 5). 5. The user wins the game if they have correctly guessed all of the letters in the word, and they lose if they run out of guesses!