Adding Arrays to Classes

Ok, just starting out - and I cant seem to find anything here about how I use the IDE to add an Array as a property to a class definition

I can use the IDE to define a class OK, I can add properties, such as text and integers but it wont let me add an array - am I missing something simple?

you add a property, and put () after its name

if you add () to the end of the property it tells it it’s an array.

so if you create an integer property, Age, before you would just declare it as Age() to make it an array.

You can also define a fixed size array, like Age(9).

OK I thought I’d tried that but it seems to be working now so clearly I hadn’t. Thanks.