Ruby - Enumerable and Collection Processing
Identify the error in this Ruby code snippet:
numbers = [1, 2, 3, 4] filtered = numbers.select do |n| n > 2 end puts filtered
