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