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.Add("1978 Ford Mustang II")
garage.Add("2004 Chevrolet Tahoe")
garage.Add("2008 Lincoln MKZ")
End Sub
End Module