I want to create ten objects within a loop, each object obviously should have a unique name

I am creating ten instances of TestObject

Code:
 for (int i = 0; i < 10; i++) 
        {
            TestObj UNIQUENAME = new TestObj();
        }
how do i create a unique name using the loop counter i eg TestObj1, TestObj2 etc