I need to do a random with a 16-digit number. And the random function I got doesn't work with big numbers. I got this function:
int pin = new Random().nextInt(10000);
But if I put a big number like 1000000000000, it won't work because it's not int, and the nextLong is not working to me like that. Thanks.