Crie uma função que recebe dois arrays e insere cada elemento do segundo array entre os dois elementos do primeiro.
Program.TuckIn(new[] { 1, 10 }, new[] { 2, 3, 4, 5, 6, 7, 8, 9 }) ➞ new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }
Program.TuckIn(new[] { 15, 150 }, new[] { 45, 75, 35 }) ➞ new[] { 15, 45, 75, 35, 150 }
Program.TuckIn(new[] { "bottom", "topping" }, new[] { "tomato sauce", "vegetables", "cheese" }) ➞ new[] { "bottom", "tomato sauce", "vegetables", "cheese", "topping" }O primeiro array sempre contém exatamente dois elementos.