Illegal use of NEW on array or list declaration: <name>
You used the keyword New in declaring an array or list. This not allowed. In an array or a list whose type is a class, the elements must be constructed individually.
Remove the New keyword from the declaration of the array or list specified in the error message.