So with two arrays:
[1, 2, 3, 4, 5]
[100, 200, 400, 800, 1600]
How would I return:
[1, 100, 2, 200, 3, 400, 4, 800]
I know with zip(firstArray, secondArray)
I can return [(1,100), (2,200)]
etc...
But I'm not looking to work with tuples in this occasion. Any ideas?