Printing values from an Array Verticaly

Hi, is printing values from an array verticaly possible. I’ve tried using + vbCRLF but to no avail. I’ve had a little search and found what looks to be complicated js versions of what I’m looking for.
Thanks in advance
Will.

thoL=[]

For i = 1 To seg

SegX= (SegX+segW)

thoL.push(Round(tho+(SegX*slX),3))

Next

 Textarea68.value = thoL + vbCRLF       ?

Use a newline character:

Textarea68.value = thoL + "\n"

Brilliant thanks George :+1: