Instantiate class from an Array?

To call a class we would type: var testClass = new TestClass();

Can I store the class in an array, and somehow pull it when I want to call it the same way? I need to be able to call a new class like the example above, but from an array. :luigi:

tyvm