Question: Which line could you add to this code to print "jaguar" to the console?

  1. `animals.filter(e => e === "jaguar");`
  2. `animals.reverse();`
  3. `animals.shift();`
  4. `animals.pop();`

Answer: The correct answer of the above question is Option D:`animals.pop();`