Standard LibraryFunctionszipOn this pagezip zip(Object x, Object y) -> Object Pairs corresponding elements from two containers. Parameters x: The first source container. y: The second source container. Returns A list of two-element lists. Example zip([1, 2, 3], [4, 5, 6])//-> [[1, 4], [2, 5], [3, 6]]