This method merges arr1 and arr2 into a single array in alternating order. If arr1 and arr2 do not have the same amount of values, the extra values are just appended to the end of the array returned to by the method.
So if I'm combining these two arrays:
Array 1: {0,1,2,3,4}
Array 2: {5,6,7}
Output: {0,5,1,6,2,7,3,4}
Could really use help.
Thanks in Advance