I have a problem and I am not able to figure this one out. Lets say we have multiple arrays:
[1,2,3]
[1,2,3]
[11,12,13]
How could I extract all values on each index from multiple arrays and combine them into separate arrays?
Output should be:
[
[1, 1, 11], // all items on index 1
[2, 2, 12], // all items on index 2
[3, 3, 13] // all items on index 3
]