const peaks=[aaa,bbb,ccc]
peaks.reverse() //直接返回会改变原数组
const newPeaks=[...peaks].reverse() ;//使用展开运算符,创建一个副本就不会改变原数组