Let’s say you have this array:
const myArray = ["red", "blue", "green", "blue", "blue", "orange", "green"];
But you only want each item to appear once.
Here’s how you turn that array into an array where each item only appears once.
const uniqueArray = [...new Set(myArray)];