I have three arrays:
['a', 'apple', 'albania'];
['b', 'banana', 'brasil'];
['c', 'carrot', 'croatioa'];
I want to convert those three arrays to:
['a', 'b', 'c'];
['apple', 'banana', 'carrot'];
['albania', 'brasil', 'croatioa'];
How can I do it?
I want the values with key 0 to form a new array and so on with all the keys
Any suggestion will be received.
Thank you!