Imports System
Public Module Module1
Public Sub Main()
Dim junk(5) As String 'array of a fixed size
junk(0) = "buttons"
junk(1) = "bead"
junk(2) = "spider"
junk(3) = "matches"
junk(4) = "notepads"
Console.WriteLine(junk(3))
End Sub
End Module