Go and look at the link on sending messages again. You have written it to send each message to a different output (but have only allowed one). You want to send all the messages to one output.
Is that comment a reply to my point about the fact that have coded it to send one output to multiple outputs instead of multiple messages to one output? If so then I don't understand the relevance of it.
Do you want to send multiple messages each containing one value, or one message containing multiple values? We have assumed here that you are trying to send multiple messages as that is what you seemed to be asking and what you coded into your function node. Your data coming in is already multiple values in one message so it is not at all clear what you are trying to do.
By the way - please try to avoid sharing screenshots of code. It makes it impossible for us to suggest changes without retyping your code. As longs as they are relatively short, paste in your code here with ``` on a new line before and after.
In that case you were nearly right in the function posted, except you have told it to send them to multiple outputs. As I said look again at the link posted. You need to send an array containing an array, so change the last line to something like
return [[ RMS_X, RMS_Y, ... ]]
Also please don't use the word values when you mean messages (each containing a value).