Question: To get the first item from the array ("cooking") using array destructuring, how do you adjust this line?

  1. `const first = ["cooking", "art", "history"]`
  2. `const [] = ["cooking", "art", "history"]`
  3. `const [, first]["cooking", "art", "history"]`
  4. `const [first] = ["cooking", "art", "history"]`

Answer: The correct answer of the above question is Option D:`const [first] = ["cooking", "art", "history"]`