以下のコードの実行結果として正しいものはどれですか? ```ruby words = ["ruby", "python", "java", "go"] result = words.map { |word| word.length }.select { |length| length > 4 } puts result.inspect ```