V

const _price = cart.reduce(
(previousValue, currentValue) => console.log(previousValue, currentValue)
);
Не могу понять почему только в первом previousValue есть значение а в остальных undefined
cart: [
{
price: 925,
},
{
price: 212,
},
{
price: 121,
},
{
price: 524,
},
{
price: 325,
},]