MCを配列に配置し、後でインデックスから最後まで削除したいと思います。
//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);
MCをステージから削除する方法は、アレイから削除するのと同じですか?