js Как написать zip? export const zip = (keys, values) => { let obj = {}; keys.forEach((key, index) => obj[key] = values[index]); return obj; }