以下のコードの実行結果はどうなりますか? ```ruby numbers = [1, 2, 3, 4, 5, 6] result = numbers.select { |n| n > 3 } puts result.inspect ```