Criando nova matriz a partir de matriz antiga sem impactar a matriz antiga

const newArr = Array.from(oldArr);
Zany Zebra