以下のコードの実行結果として正しいものはどれですか? ```ruby time1 = Time.new(2025, 1, 1) time2 = Time.new(2024, 12, 31) result = time1 > time2 puts result ```