%myChoice(1) is the correct answer's index %myChoice(2) is a random incorrect answer's index
%and now you're ready! let the user pick between answer # myChoice(1) or myChoice(2).. you might want to keep track of the other two answers that will be crossed out, though those can be figured out since they are not in the list.
loop put"pick an answer" get myAnswer
if myAnswer = myChoice(1)or myAnswer = myChoice(2)then %check if myAnswer = answerIndex, if so - user wins exit else put"you can't pick that" endif endloop
Can you please help, Input this to my actual millionaire game.