There are 2 constructors of Random class
Random
public Random()
public Random(long seed)
The description fo
If you use the constructor with the seed, you will get a repeatable sequence, so it's good for testing. If you use the constructor without the seed, you don't know what sequence of random-like numbers will be produced.