function random_item(items) { return items[Math.floor(Math.random()*items.length)]; } const items = [254, 45, 212, 365, 2543]; console.log( ...
確定! 回上一頁