Using Math.round on Math.random won’t produce the desired result, and you should not be hard coding the length of the choices array…what if it changes?
Have a look at this reference to learn how you can get a number between 0 (inclusive) and the length of the array (exclusive): JavaScript Math random() Method
What does User Story #7 say getRandomQuestion should return? Is that what you are returning?
What does User Story #8 say you should pass to getRandomComputerChoice as a parameter? Is that what you’re passing in?
Start by fixing these issues then post your updated code, formatted as follows, if you need more help:
There are two ways you can format your code to make it easier to read and test:
After you copy/paste your code into the editor, select it by dragging your cursor over it then click the (</>) button in the toolbar to automatically wrap your code in backticks. (You can click on the animated demo image below to enlarge it.)
Manually add three backticks on a new line above your code and on a new line after your code. Note that a backtick is NOT the same as a single quote('). To find the backtick key on your keyboard, see this post.
To see changes to your post as you make them, you can click the (M+) button on the toolbar to bring up the rich text editor: