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