Ruby - Enumerable and Collection Processing
What will be printed by this Ruby code?
x = [10, 20]
y = ["a", "b", "c"]
result = x.zip(y)
result.each { |pair| puts pair.join('-') }