You’re passing arr2 as a whole array instead of its individual components. Use the browser console to view this but what you think is [a,1,2,b] is actually [a,[1,2],b].
You can also drop in console.log(frankenSplice([1, 2], ["a", "b"], 1).length) to verify the length is 3 instead of the 4 it should be.
-J
Your right !!
I never thought that there a real different between the FCC console and browser Console and
I think it’s wrong solution because slice represent new array Not just number inside array. So,I’ll try to figure out new solution to solve that problem.
Thank you again.
and sorry i forget to add the link of this challenge
You should edit your above post and wrap the code with [spoiler][/spoiler] tags. That blurs the text but you can see it if you click on it like this!. In case someone is looking for advice in the future but not the answer.
-J
It is great you solved the challenge! I have blurred out your code to avoid spoiling a full working solution for other campers who may not yet want to see a complete solution.
Thank you.