Enter any sequence of numbers that can be output by the following code.
Random generator = new Random();
int a = generator.nextInt(3);
int b = generator.nextInt(2) + 1;
int c = generator.nextInt(4);
System.out.println(a + " " + b + " " + c);
Note: all numbers are separated by one space.