Java tutorial
import java.util.Random; public class Main { public static void main(String args[]) { Random randomno = new Random(); // get next next boolean value boolean value = randomno.nextBoolean(); // check the value System.out.println("Value is: " + value); } }