In my opinion my code works (at least in the chrome dev console) and fulfills the requirements of the challenge, but for some reason it says that it fails every requirement.
function frankenSplice(arr1, arr2, n) {
arr3 = [...arr2];
arr1.forEach(element => {
arr3.splice(n, 0, element);
n++;
});
return arr3;
}