Say i have the two following arrays
array_1 = ["Person One", "Person Two", "Person Three"]
array_2 = ["24", "25", "26"]
How would I merge these arrays together so that the output would be
["Person One 24", "Person Two 25", "Person Three 26"]
Thanks