Java tutorial
import java.util.Random; public class Main { public static void main(String args[]) { Random randomno = new Random(); // check next int value System.out.println("Next int value: " + randomno.nextInt(10000)); } }