I'm facing an issue that I can't seem to solve on my own. Imagine we have several arrays:
[1,2,3]
[1,2,3]
[11,12,13]
How do I go about extracting all the values at each index from these multiple arrays and combining them into separate arrays?
The desired output would be:
[
[1, 1, 11], // all items at index 1
[2, 2, 12], // all items at index 2
[3, 3, 13] // all items at index 3
]