Randomize answer options/sub questions
Challenge
In order to synchronize randomization of sub questions/answer options among several questions
As a questionnaire creator
I want to control the randomization with a random seed, which means that the system will generate a unique order based on one value of random seed
Example
I have a single question with drinks as answer options.
I want to show the answer options in random order (except None of the above option)
Solution
Use any random seed and a randomization range from 0 to 5
Code
1 quest.randomizeAnswerOptions(3, 0, 5);