Array of custom class objects, possible?

Hi,
Say I have a custom class “person” and I want to make an array of objects of type person. How do I do that?

class Person{
   var Age : int;
   var Weight : float;
}

I want to know if it’s possible to have an array of type person and access the components like “ClassB_Students[index].Age”

You can define a array of “Person” objects like this

var personArray : Person[];

Or as the slower but more flexible array class

var personArray = new Array();

Read more about both types here.