You must specify an index value when referring to a property array. This error has the following cause and solution:
Change your code to include the index value. For example, List1.List is invalid but List1.List(3) is valid.
List1.List
List1.List(3)