Okay, actually I take back what I said - it's just poorly written code and sometimes it IS incorrect on the html preview as well...
Not sure the proper way to go about doing this though.
Hi
First, the Json file has to be loaded properly on the same event that you have right now
-Ajax On Answers Completed
Subevent load ArrayAnswers from Ajax.LastData
Not sure why it never respect the spaces that you leave between lines I have to put these signs for line breaker
==============================================================================
===============================================================================
Now that you will have the Array loaded:
For your second question about Pick a random value from the Y but no repeats you could do:
Have an empty 1D array set the size to = 0
Then Repeat (ArrayAnswers.Height) Times >>>> Push back Lopindex
Then you can pick a random Value by >>>>
Add a local varriable example: "Temp_Index"
Ser Var "Temp_Index" to int(random( ArrayAnswers.Height))
-That will be your Y index number to pick the Question from ArrayAnswers
-After that you picked the question you can delete the index from the 1Darray so you cannot pick it again
Then repeat the same process if you have to pick more questions.