What is the value of MysteryInteger when the following statements are executed?
Const NUMBER_Integer As Integer = 10
Select Case NUMBER_Integer
Case 1, 3, 5, 7, 9
MysteryInteger = NUMBER_Integer
Case 2, 4, 6, 8, 10
MysteryInteger = NUMBER_Integer + 1 * 2
Case Else
MysteryInteger = NUMBER_Integer * 2 + 1
End Select
A. 10
B. 12
C. 21
D. 22