diff --git a/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx b/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx index 7fa12d44..a2faca52 100644 --- a/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx +++ b/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx @@ -74,7 +74,7 @@ Now, we will randomly choose one of these words to be the correct answer. 🎲 word = random.choice(word_bank) ``` -The `random.choice()` method is used to randomly selects a word from the `word_bank` list and assigns it to the `word` variable. All possible options having an equal probability of being chosen. +The `random.choice()` method is used to randomly select a word from the `word_bank` list and to assign it to the `word` variable. All possible options have an equal probability of being chosen. ## Finishing the Setup