import random
words = ['tree','sun','ball','moon','earth','grass','world']
word = random.choice(words)
print(word)
#easy random word generator
import random
words = ("Rock", "Paper", "scissor")
word = random.choice(words)
correct = word
print(word)