Let's say that I have this array.
const arr = [['grass', 'water'], ['fire', 'ground'], ['fairy', 'mage'], ['fighter', 'fire']];
So what I want is to concatenate arr[0] with arr[2], arr[1] with arr[3].
This has to be done trough some array method or loop, since I don't know how much of elements I will have.
Result should look like this
const arr = [['grass', 'water', 'fairy', 'mage'], ['fire', 'ground', 'fighter', 'fire']];