Java Radom Float

Random r = new Random();
float random = min + r.nextFloat() * (max - min);
JulesG10