Freeing objects 2

What if I create a list of objects? How do I free this?
for(i$,0,12)
#object Card testcard$(i,i+1);
CardList%[i$] = &testcard$;
end;
I have twelve objects in a list. Do I free the list? if so, how?
for(i$,0,12)
#object Card testcard$(i,i+1);
CardList%[i$] = &testcard$;
end;
I have twelve objects in a list. Do I free the list? if so, how?