Given this JavaScript array, which line of code will print "tofu" to the console?

const proteinChoices = ["beef", "chicken", "shrimp", "tofu"];
(1 point)
console.log(proteinChoices [3]);
console(proteinChoices [4]);
console.log [proteinChoices (3)];
console [proteinChoices (4)];

console.log(proteinChoices[3]);