Returns a random intenger in the range [low, high).
low
high
int nextIntFrom(int low, int high) => low + nextInt(high - low);