✅ PRNG
Why does the Random number generator object not generate the random number 45 if the range is set from 1 to 45?
If the range is set from 1 to 46 then the number 45 is generated randomly.
2 Replies
The upper bound is exclusive. You can find that in the documentation.
I understand, thanks