Not working: Get value of multiple selected items

Hello professionals,
how can I tan the selected elements in a textbox?
I have a form and want to summarize all input values on the last page?
Thanks for your suggestions
Br, Yulia

The returning value of Selection-Tag s is in an array…
That’s why it is not showing in a textbox
https://www.wix.com/corvid/reference/$w/selectiontags/value
Try this function →

#text1 - text
#selectionTag - The selection tag

$w('#text1').text = $w('#selectionTag').value.toString();

thanks Ajit, youre the best