sum += fr.nextInt();
}
sum = 0;
start = System.nanoTime();
for (int j = 0; j < count; j++) {
sum += fr.nextInt();
}
logger.info("FastRandom: {}ms.", (System.nanoTime() - start) / 1000000);
logger.trace("Use the result so that JVM doesn't skip the computation - here it is: {}", sum);