function randomSort(arr){ let result = []; // 从数组arr中随机抽取一个元素加入到新数组中 while(arr.length>0){ var randomIndex =Math.fool( Math.random()*arr.length); } }