You can assign variables from arrays with destructuring like this:
const arr = ["eyes", "nose", "lips", "ears"]
let [eyes, nose, lips, ears] = arrBut you can also skip over items in the array being destructured.
Check the Resources tab for more examples.