PY
py
1
2
3
4
5
6
7
8
from random import shuffle
wordListFile = open("wordlist.txt" , "r")
lines = wordListFile.readlines()
wordListFile.close()
shuffle(lines)
guess = (list(lines[0]))
shuffle(guess)
print(guess)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run