
I am trying to achieve the following and I am assuming that I will need some JavaScript for that, however, I am not (yet) familiar with that. So really any hint of help is very much appreciated!
Within the description text of a question I would like to display a random number between two values (newly drawn for every participant). Within a choice option of that question I would like to do the same thing but with different min and max values. Additionally, I also need to be able to record which numbers were drawn for each participant in each question. More specifically, for the question text I need the text to look something like this: "texttextext (randon number)€. texttextext"
I am assuming one can use some form of this code: var randomnumber = Math.floor(Math.random() * (500 + 1) + 50)
but than again my understanding of JavaScript is fairly limited.
Thank you so much for sharing your ideas!
Marco