Ruby - Enumerable and Collection Processing
What will this Ruby code output?
words = ["dog", "cat", "bird", "fish"]
result = words.detect { |w| w.length > 3 }
puts result