Question: Which line could you add to this code to print "jaguar" to the console?
- `animals.filter(e => e === "jaguar");`
- `animals.reverse();`
- `animals.shift();`
- `animals.pop();`
Answer: The correct answer of the above question is Option D:`animals.pop();`