function welcome() { const arr = ['休息一会儿吧', '准备吃什么呢?', '要不要打一把 DOTA', '我猜你可能累了'] let i=Math.random() * arr.length const index = Math.floor(i) console.log(i,index) return arr[index] } welcome()