How do you go from a single object like this:
{
item001: '200',
item002: '350',
...
}
to an array of objects with named properties like this:
[
{
product: 'item001',
price: 200
},
{
product: 'item002',
price: 350
},
...
]