Ruby - Enumerable and Collection Processing
What will be printed by this Ruby code?
words = ["apple", "banana", "cherry", "date"]
filtered = words.select { |w| w.length == 5 }
puts filtered.join(", ")