Psychopy to pavlovia error

Ah. I think I see the problem.

In Python the syntax is delimeter.join(array) and in JavaScript the syntax is array.join(delimeter)

How about

displayText=''
for Idx in range(len(array)):
    displayText +=array[Idx]