public class Not {
int[] not = new int[10000];
Random random = new Random();
public int[] notArr() {
for(int i = 0; i < not.length; i++) {
not[i] = random.nextInt(10000) + 1;
}
return not;
}
}
public class MainTest {
public static void main(String[] args) {
Not testNot = new Not();
int[] masNot = testNot.not;
System.out.println(Arrays.toString(masNot));
}
}