Dropdown option

Hi,

I want to send below mentioned msg.options to dropdown node.
image

I tried to convert string to array objectimage
but not working.

Kindly help to send string as option dropdown node.

msg.options must be an array containing the options, so you want
msg.options = ["A001"]
or if you want to convert the existing msg then
msg.options = [msg.options]

HI @Colin,
Thank you for your solution. It's working fine.