RandomNum class used to generate a reproducible sequence of pseudo-random numbers three methods: seed() - the current random number seed setSeed() - set the seed uniform() - return a pseudo-random number in the range 0..1. This method resets seed to the next value in its sequence. integerInRange(a,b) - uniform random integer between a and b, inclusive.