ArrayList is a class, so you'll need to initialise it
ArrList = New ArrayList()
In fact, come to think of it, there's an ICollection constructor for ArrayList objects, and Arrays offer ICollection, so hows about this:
Dim iArray() As Integer = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
Dim ArrList as...