以下のコードの実行結果として正しいものはどれですか? ```python values = [5, 12, 8, 15, 3] result = 0 for value in values: if value > 10: result = result + 1 print(result) ```