Ok I relabeled the text items.
The only variables I created and used are:
v_ChoiceA
v_ChoiceB
Both are set to 0.
The items that change states on Slide 5 are:
Txt_ResultsTitle
Txt_ResultsText
Results_Image
I found this approach in another post, but it simply reset slide 5.

From what you're saying, I need a script that makes the user jump to Slide 1 and resets v_ChoiceA and v_ChoiceB back to 0, as opposed to 4, as it would be by the time the user gets to Slide 5. I'm not too sure how to proceed >< Ideas?
Such an approach will NEVER reset a slide, as I explained in that blog post rather extensively. You do not enter the slide, which means that each script triggered On Enter will not be done at all. Did you read that post? I explained both approaches, without and with entering the slide and their advantages. For pure SWF output there used to be a simple way to re-enter a slide when replahing but I didn't mention it because it only works on SWF output.
You need an advanced action On Enter for a slide, which can be slide 1 if that slide has already items to be reset. You could do it as well with the button that jumps to the slide, but I mostly prefer to do it with the On Enter action of the slide. For the button Replay you can keep just the command 'Jump to Slide A'. For On Enter of slide 1.
Assign v_ChoiceA with 0
Assign v_ChoiceB with 0
Change State of Image_A to Normal
Change State of Tx_ResultsTItle to Normal
Change State of Tx_ResultsText to Normal
I would never work with hiding in combination with changing states: either you choose for states, or you choose for Show/Hide You can have as many states as you want for the Image and the texts, even a complete empty state for Normal. If you start to mix Show/Hide with states you'll get lost.