Create a new Map from each member of keys to the corresponding member of values.

zipToMap([1, 2], ['a', 'b']) => Map({1: 'a', 2: 'b'})