Membuat array baru dari array lama tanpa memengaruhi array lama
const newArr = Array.from(oldArr);
Zany Zebra
const newArr = Array.from(oldArr);