Imports System
Imports System.Collections.Generic
Public Class Program
Public Shared Sub Main()
Dim list As New List(Of Integer)
list.Add(4)
list.Add(6)
list.Add(99)
list.Add(3)
list.Add(1)
Console.WriteLine(String.Join(", ", list))
End Sub
End Class
' run:
'
' 4, 6, 99, 3, 1
'