Ruby - Enumerable and Collection Processing
Given two arrays
products = ["Pen", "Notebook", "Eraser"] and prices = [1.5, 2.0, 0.5], which Ruby code correctly creates a hash mapping each product to its price using zip?