const min = 3; const max = 9; const createRandom = (min, max) => { const diff = max - min; const random = Math.random(); return ...
確定! 回上一頁