ABCDEFGHIJKLMNOPQRSTUVWXY
1
nametypelabelcalculationrelevantcomment
2
randomcalculateround(random() * 6 + 0.5, 0)This calculates a number between 1 and 6. random() creates values between 0 and 1, so to force numbers between 1-6 we need to add 0.5 to always round up to the nearest integer.
3
group_1begin group${random} = 1
4
Q1_1textQuestion 1
5
Q2_1textQuestion 2
6
Q3_1textQuestion 3
7
end group
8
group_2begin group${random} = 2
9
Q1_2textQuestion 1
10
Q3_2textQuestion 3
11
Q2_2textQuestion 2
12
end group
13
group_3begin group${random} = 3
14
Q2_3textQuestion 2
15
Q1_3textQuestion 1
16
Q3_3textQuestion 3
17
end group
18
group_4begin group${random} = 4
19
Q2_4textQuestion 2
20
Q3_4textQuestion 3
21
Q1_4textQuestion 1
22
end group
23
group_5begin group${random} = 5
24
Q3_5textQuestion 3
25
Q1_5textQuestion 1
26
Q2_5textQuestion 2
27
end group
28
group_6begin group${random} = 6
29
Q3_6textQuestion 3
30
Q2_6textQuestion 2
31
Q1_6textQuestion 1
32
end group
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100