If i have an array that i've used to load other items

ex:

load object(2)


And then lets say i have 5 objects and i have somtin like this

ex:

for i = 0 to 5
object(i).caption = label1.caption
Next


How do i get rid of a control after i created it, then how do i use it to do the following with that code

ex: I want to remove object(3) but still have
for i = 0 to 5
object(i).caption = label1.caption
Next
to work


ty