单项选择题

设有如下一段程序:
Private Sub Command1_Cliek( )
Static a As Variant
a=Array("one", "two", "three", "four five")
Print a(3)
End Sub
针对上述事件过程,以下叙述中正确的是( )。

A) 变量声明语句有错,应改为Static a(5)As Variant
B) 变量声明语句有错,应改为static a
C) 可以正常运行,在窗体上显示three
D) 可以正常运行,在窗体上显示four