Why are you returning arr2?
Here you can read about splice and slice methods:
With slice you can copy an array or part of it.
With splice you can get elements from one array, (but it changes the array from which you remove the items), and you can insert elements into an array.
You need to take elements from one array (or a copy of it) into the other (or a copy of it), in order and at the index n. And return the resulting array.
Remember that the instructions says that you can’t modify the input arrays.