Response colums

In the task part of my experiment participants should see three words appearing at the same time, and they have then to choose the correct one pressing a key (kind of “fill in the blank” task). These three words are listed in my xlsx file as “resp1”, “resp2”, “resp3”.
I’m trying to select them as text component in the builder, but how can I select the three of them together? They should appear in the same screen. Apparently $resp1, $resp2, $resp3 is not accepted.
Thanks,
Sara

Try this: $resp1 + "\n" + resp2 + "\n" + resp3

If you would like the words to appear next to each other, replace \n (new line) with a space.

Jan