I would like to know if there is a builtin function of 2D array building from 2 1D arrays. Of course I can build such function my self but I wonder if there is already array manipulation library.
Example:
input: [1,3,5] and [2,4,6] => [[1,2], [3,4], [5,6]]