✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be logged?
const arr = [2,3];
const result = arr.reduce((acc, curr) => acc * curr, 5);
console.log(result);
]]>