How does one get a random number within a range similar to c# Random.Next(int min, int max);
Generates a random integer uniformly distributed in the range from [min] to [max], both inclusive.
int nextInt(int min, int max) => min + _random.nextInt((max + 1) - min);