I place the MC in an array and would like to remove it later on from an index maybe till the end.
//Removeing MC from stage, from an index till the end
LISTmc.removeChild(listArray[clickedIndex+1]);
//Removing MC starting from an index till the end
listArray.splice(clickedIndex+1);
Is the way to remove the MC from the stage same with removing it from array?