There are a number of ways you could go about doing this. One good thing to study up on would be custom states. You could, for example, set two custom states on any element on the screen. One custom state could be called “active question #”, and it could be a number that is set to 1 by default. The other custom state could be called “active question” that is of the type question. Then, when a user clicks on a “Next Question” button, you could increase the “active question #” by 1, and change “active question” to be the question item from your list of questions that corresponds to “active question #”. (It would be something like List of questions: item #active question #'s number. You’re essentially picking one item from your list of questions, and that item’s index corresponds to the “active question #” custom state. Hope this helps! Let me know if you’re confused.