Combine Parameter

Im trying to combine 2 parameters into one value for a label.

I have this code but I want to put a space between the values as this gives me valuevalue. I know the ‘+’ sign is normally an additions so what would be the normal way to combine two params in a label.

{view.params.stalk} + {view.params.joint} 

Have you tried:

{view.params.stalk} + " " + {view.params.joint}

That did the trick, Thankyou.