Alternate Between Two Arrays

Ruby

Create a method called alternate_arrays that receives two array arguments and alternates between both arrays to combine them into one array and return it.

array_numbers = [1, 2, 3]
array_letters = ["a", "b", "c", "d"]
def alternate_arrays arr1, arr2 end
< >