function shuffleArray(arr) { arr.sort(() => Math.random() - 0.5); } let arr = [1, 2, 3, 4, 5]; shuffleArray(arr); console.log(arr)