Option Strict On
Imports System.Collections.Generic
Public Module Module1
Public Sub Main()
'Declare a new List(Of String)
Dim garage As New List(Of String)
'Add my vehicles to the List
garage.AddRange({"2004 Chevrolet Tahoe", "2008 Lincoln MKZ"})
'Woops, forgot my Mustang
garage.Insert(0, "1978 Ford Mustang II")
End Sub
End Module