Question: To get the first item from the array ("cooking") using array destructuring, how do you adjust this line?
- `const first = ["cooking", "art", "history"]`
- `const [] = ["cooking", "art", "history"]`
- `const [, first]["cooking", "art", "history"]`
- `const [first] = ["cooking", "art", "history"]`
Answer: The correct answer of the above question is Option D:`const [first] = ["cooking", "art", "history"]`