Imports System
Public Module Module1
dim mystack(5) as integer
dim x as integer
Public Sub Main()
'create empty array
x = 0
for x = 0 to 5
mystack(x)= "707"
next x
console.writeline( mystack(0)&" "& mystack(1) & " " & mystack(2)& " " & mystack(3)& " "& mystack(4))
End Sub
End Module