import java.util.Random;
public class Main {
public static void main(String[] args) {
Random random = new Random();
int x = random.nextInt(6)+1;
double y = random.nextDouble();
boolean z = random.nextBoolean();
System.out.println(x);
System.out.println(y);
System.out.println(z);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)