Question 8 in “Quiz 3: Check Your Understanding 2.2” asks:
"Which statement would successfully generate random numbers from the set: 1, 2, 3, 4, 5?"
To which the answer is Random.Range(1, 6)
However going from the documentation of the function, the min
and max
values are inclusive, which would mean the answer should actually be Random.Range(1, 5)
, surely?