Create random number between low and high
low
high
static double randInt(double low, double high ) { double rand = math.Random().nextDouble(); return low + (rand * ( high - low + 1 ) ); }