Hi There,
and sorry to go with this complete node topic but ....
[{"id":"801126629e8ab7c2","type":"inject","z":"14ef36ad590a7fe8","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"[1,2,3,4]","payloadType":"json","x":540,"y":740,"wires":[["43e9c21fa8e74c31"]]},{"id":"50914d4efa31df6e","type":"complete","z":"14ef36ad590a7fe8","name":"","scope":["43e9c21fa8e74c31"],"uncaught":false,"x":1008,"y":495,"wires":[["fa1a47e2ee058fb1"]]},{"id":"fa1a47e2ee058fb1","type":"debug","z":"14ef36ad590a7fe8","name":"debug 394","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"payload","targetType":"msg","statusVal":"","statusType":"counter","x":1350,"y":336,"wires":[]},{"id":"3ed5963b7a8e8f57","type":"join","z":"14ef36ad590a7fe8","name":"","mode":"custom","build":"array","property":"","propertyType":"full","key":"topic","joiner":"\\n","joinerType":"str","useparts":false,"accumulate":false,"timeout":"","count":"4","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":1014,"y":740,"wires":[["ef44b9d6ea93685b"]]},{"id":"43e9c21fa8e74c31","type":"split","z":"14ef36ad590a7fe8","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","property":"payload","x":792,"y":605,"wires":[["3ed5963b7a8e8f57"]]},{"id":"ef44b9d6ea93685b","type":"debug","z":"14ef36ad590a7fe8","name":"debug 395","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"payload","targetType":"msg","statusVal":"","statusType":"counter","x":1322,"y":588,"wires":[]}]
This time the complete is listening to the split node which receives a message with [1,2,3,4]
array of four values. It sends out four messages to the join. It also sends a message to the complete node but instead of sending the original array, it sends the value '4' i.e. the last value in the array:
Shouldn't that be the content of the original message, i.e. [1,2,3,4]
since that's the message with which the split has completed with?