stock random2(min,max) // returns a random value, between min and max.{ return min + random ( max - min );}