I am need of some assistance on how I can get my code to navigate if the students land on the correct page (if they get to here, it should take them to the next set of quiz), otherwise if they get it wrong (it will take them to the incorrect page and then they can repeat the question)
Did a bit more work. The current model that you used would mean that you have to hardcode a screen for every single question which would be very unsustainable. The ideal way is to use a datasource to hold the questions, possible answers and correct answer.
You then use only 1 page to present the questions. If the selection made is incorrect, the incorrect page announcement screen is called and the user is returned to the same screen which used the same question number to pull from the datasource.
If the answer is correct, the question number is incremented and the next question is presented.
You can also do this if you don’t want to use the function.