// we have array with products prices
var priceList = Bot.getProperty("priceList")
if(!priceList){ priceList = [] }
var curProduct = { name: 'Apple iPhone 25', price: 5100 }
// we store all products in property priceList
Bot.setProperty("priceList", priceList, "json")