I discovered something strange with the generation of random numbers using Java\'s Random class.
Basically, if you create multiple Random objects using close seeds (for exam
By making random seeds (for instance, using some mathematical functions on System.currentTimeMillis() or System.nanoTime() for seed generation) you can get better random result. Also can look at here for more information