生成随机数介于最大值和最小值之间

function randomInterval(min, max) {return Math.floor(Math.random() * (max - min
function randomInterval(min, max) {return Math.floor(Math.random() * (max - min + 1) + min);
}