I was taking the 2.2 quiz tonight and ran into a similar issue to the one mentioned in this discussion: Quiz 3: 2.2, Question 8 incorrect answer?
Question 8:
Which statement would successfully generate random numbers from the set: 1, 2, 3, 4, 5 ?
Well, similar but opposite. I understood that the min was inclusive and max was exclusive, so I selected Random.Range(1,6);
And it was wrong.
Once I chose Random.Range(1,5);
it said it was correct.
It’s Random.Range(1,6);
Right?