Suppose you have declared and initialized two String variables, name1 and name2, in a Visual Basic program. Now, you want to swap the values stored in name1 and name2, but only if the value of name1 is greater than the value of name2.
Write the Visual Basic code that accomplishes this task. The declarations are as follows:
Dim name1 As String = "Smith"
Dim name2 As String = "Smythe"
$\qquad$
$\qquad$
$\qquad$
$\qquad$