Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down