Private Sub Command1_Click()
Dim a( 1 To 6) As Integer, i As Integer
For i= 1 To 6
a(i) =Int(Rnd*5) *2+ 1
Next i
For i=2 To 6 Step 2
a(i) =cha(a(i-1) , a(i) )
Next i
End Sub
Function cha(x As Integer, y As Integer) As Integer
Dim t As Integer
If x<y Then
t=x:x=y:y=t
cha=y
Else
cha=x-1
End If
EndFunction
执行该程序段后,在下列选项中,a(1)~a(6)各元素值可能的是( )