I have multiple arrays and I would like to combine them together so when I call a row, the 1st value of each array is shown. How can I do this?
array1 = ['happy','sad','tired']
array2 = ['oranges', 'apples', 'grapes']
array3 = ['monkeys','elephants','tigers']
array = [array1,array2,array3]
output:['happy','sad','tired'],['oranges','apples','grapes']etc...
wanted output: ['happy','oranges','monkeys'],['sad','apples','elephants']etc...