RandomEx(min, max){ return random(min) + max - min;}
RandomEx(8, 10);
2, 3, 4, 5, 6, 7, 8, 9
RandomEx(min, max){ return random(max - min) + min;}