Collections ASP.Net Tutorial

<%@ Page %>

  Sub Page_Load(sender As Object, e As EventArgs)
    Dim i As Integer
    Dim item As String
    Dim myList As New System.Collections.ArrayList()
    myList.Add("Zero")
    myList.Add("One")
    myList.Add("Two")
    myList.Add("Three")
    myList.Add("Four")
    myList.Add("Five")
    For Each item In myList
      Response.Write(Item & "
")
    Next
  End Sub