so I am trying to get a random word for a project and I never used read in my code speaking of here's my code
import json
import random
Dictonaryftg = json.load("EnglishDictionary.json")
Words = list(Dictonaryftg.keys())
Rword = str(random.choice(Words))
print(Rword)
im pretty sure my issue resides here:
random.choice(Words)
But i can't find the issue