Implement solve(...arrays) that combines multiple arrays element-by-element,
returning an array of tuples. The result length equals the length of the
shortest input array.
Examples
solve([1,2,3], ['a','b','c']) → [[1,'a'],[2,'b'],[3,'c']]solve([1,2], ['a','b','c'], [true,false]) → [[1,'a',true],[2,'b',false]]solve() → []Sample tests