1. const swapItem = function (arr, i, j){
    2. const _arr = [...arr]
    3. [_arr[i], _arr[j]] = [_arr[j], _arr[i]]
    4. return _arr
    5. }