Ruby - Enumerable and Collection Processing
The following Ruby code is intended to zip two arrays but raises an error. What is the problem?
a = [1, 2] b = ["x", "y", "z"] result = a.zip *b puts result.inspect
