How to Random integer in Range? C++

FMath::RandRange(0, 99);
It’s literally in the first result.

Same with array:
Arr[FMath::RandRange(0, 99)];

3 Likes