const randomSelect = arr => arr[Math.floor(Math.random() * arr.length)]; randomSelect([1,2,3]) // 随机输出数组中的某个元素