const swapItem = function (arr, i, j){ const _arr = [...arr] [_arr[i], _arr[j]] = [_arr[j], _arr[i]] return _arr}