I need to create an array of objects to hold labels in visual c++ 2010,
i tried:

Object^ *labelArray;
labelArray=new Object^ [15];

but this error came up:
error C2728: 'System::Object ^' : a native array cannot contain this managed type
Did you mean 'array<System::Object ^>'?

So how to make this array and what does it mean by array<System::Object ^>

Thanks