# Start code for pickRandomWord
import random
wordList=["the","kenyon","pierce","the","college","gambier","ohio","the","kenyon","middle","college","path","fun","the","gambier","college"]
def pickRandomWord(wordList):
# pick a random numner in list
# use the random numbner function to pick a number in range
# and return word
# ..
randomWord = "test"
return randomWord
print(pickRandomWord(wordList))