What is the output of the code shown below:
Dim intAdd As Integer
Dim intOuterLoop As Integer
Dim intInnerLoop As Integer
intAdd = 0
For intOuterLoop = 1 To 8
For intInnerLoop = 3 To 7
intAdd += 1
Next
Next
MsgBox.Show ("The final value is " & intAdd.ToString())