I'm studying the Java programming language and found an obstacle, by some chance I can not compile this code
import java.util.Random;
public class Random {
public static void main(String[] args){
Random num = new Random();
System.out.println(num.nextInt());
}
}