I am looking for a way to iterate through multiple arrays, for example:
array1 = [ "1", "2", "3" ];
array2 = [ "a", "b", "c" ];
array3 = [ "apples", "bananas", "cheese" ];
I want to combine them into new arrays based on their index positions like this:
result1 = [ "1", "a", "apples" ];
result2 = [ "2", "b", "bananas" ];
result3 = [ "3", "c", "cheese" ];
Any suggestions would be greatly appreciated. Thank you!