Ruby - Enumerable and Collection Processing
What will be the output of this Ruby code?
words = ["apple", "banana", "cherry", "date"]
filtered = words.reject { |w| w.length > 5 }
p filtered