For some reason remove method miss some items is this right way to use it
function CleanVisualization() {
const Items = Sceneinfo.Scene.children;
for (let index = 0; index < Items.length; index++) {
const Item = Items[index];
if(Item.Visulization == "Visulization"){
Sceneinfo.Scene.remove(Item);
console.log(Item.name +' removed');
}
}
}