Help with function node -string type output

Hi. So few things...

  1. Returning an array from a function node is intended for when you have multiple outputs on the function note.

  2. the return value from a function node must always be an object (or array of objects). If you intend on sending an array, assign it to the message payload property.

Try this....

msg.payload = [ "false" , "false", "false", "false", "false", "false" ,"false" ]
return msg;