I\'ve got something like that:
var valueToPush = new Array(); valueToPush[\"productID\"] = productID; valueToPush[\"itemColorTitle\"] = itemColor
Use []:
[]
cookie_value_add.push([productID,itemColorTitle, itemColorPath]);
or
arrayToPush.push([value1, value2, ..., valueN]);