单选题
下列程序代码段中,在单击命令按钮调用SelMid函数时,其运行结果为( )。Private Function SelMid(aStr As String)As StringDim temp As String,sLen As Integertemp="":sLen=Len(aStr)i=1Do While i<=sLen/2temp=temp+Mid(aStr,i,1)+Mid(aStr,sLen-i+1,1)i=i+1LoopSelMid=tempEnd FunctionPfivate Sub Command1_Click()Dim StrAs StringStr="abcdef":Print SelMid(Str)End Sub