>>11695932well I dont't know statistics but I do know a little bit of javascript and I tried this code
var a=Math.floor(Math.random() * 60);
var b=Math.floor(Math.random() * 60);
var c=Math.floor(Math.random() * 60);
var d=Math.floor(Math.random() * 60);
var e=Math.floor(Math.random() * 60);
var f=Math.floor(Math.random() * 60);
var count=0;
for (var i=0; i<499999999;i++)
{
if ((a!==b+1) && (b!==c+1) && (c!==d+1) && (d!==e+1) && (e!==f+1))
if ((a!==b) && (b!==c) && (c!==d) && (d!==e) && (e!==f))
{
count++;
}
}
alert(count);
I kept getting the same result 499999999 but maybe its because the odds of getting a progressive number or repeating numbers is too low.
That or my code is wrong.