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"]