[Solved] Extracting values in repeated elements from a repeater

@aeroengineerz7 OK, so you should be able to use the code that I supplied. Just take all of the answers in the array and put them into a string:

let answerStr = answers[0] + ' ' + answers[1] + ' ' answers[2] + ...

Or you can build the string in a loop - whatever works best for you.