Suppose you are playing a different version of Rock, Paper, Scissors where the choices are rock, paper,
scissors, and gorilla. The list of options now is larger.
options = ["rock", "paper", "scissors", "gorilla"]
Complete the code for the computer to randomly choose an option.
from random import randint
compPlay options[randint(_,__)]