Is it possible to pass multiple values in a profile script?
I have 8 products for each user saved to their customer attributes. I am setting up Recommendations and need to setup the Criteria so that it shows these products in the design.
Using the script below as example, which returns one of the products, can I set it so that it returns all 8 in one script?
if (crs.get('offline customer.userid')) {
return crs.get('offline customer.prod1');
}