You can randomize the order of a collection of items such as:
>> Q = [1,2,3,4,5]
Using:
>> Q.shuffle
Another approach to doing what you want to do is to use *randomize: all
And put each question in its own *group
indented beneath *randomize
A similar approach but with 2 levels deep array, e.g.
questions_and_answers = [[["What is your favourite colour?"],["Red","Green","Blue"]],[["How awesome is this on a scale of 1 to 10?"],[1,2,3,4,5,6,7,8,9,10]]]