min 부터 max 까지 랜덤으로 숫자 추출하기!
function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }