it wants to splice arr1 to a copy aray of arr2. so i set the index to 0 to so the first element go to index 0. array index 1 moves to index 1 and third element goes to index 2 . because the computer reads the first element of the array at index 0 not 1. i used the console log and it counted from 1-6 which shhould pass the test.
apparently i changed the parameter back to the initial and the test works. the odd thing is the directions wanted it to go in order. which at the index starting at one doesnt go in order since it returns 41235]. the funny thing is i check my code from the solution and they changed the paramter to 0 there to. but apparently it wont pass. if u do that. anyways thanks alot
your right, i dont see it either. i thought i did. i guess i came up with that on my own. for a momment it made sense to do it in order for it to return from the order of 1-6 but if leaving like it is passed the challenge im fine with it.