Can anyone please help me with the syntax for setting multiple values on a 'select many' field using JS?
All of my attempts thus far have treated the multiple values as a single, literal value and consequently creating an additional selectable:
BO.F_Habitat.setValue('Aquatic','Desert');
BO.F_Habitat.setValue('Aquatic' + 'Desert');
BO.F_Habitat.setValue('Aquatic_#_Desert);
BO.F_Habitat.setValue(['Aquatic','Desert']);