I want to create a random integer array in Java (min & max), but I want each randomly generated number to have an offset distance between every other.
I.e. Let's suppose that I want to create an array list containing 10 integer numbers between 20 and 100 that the offset/distance should be 5. The array might be 21, 28, 35, 52, 58, 65, 72, 80, 86, 95.
Thanks a lot