Help with a enter activity

Hello forum,

I am learning UiPath and have now got stuck in a simple step. I have obtained 3 names from a website that I now want to publish in a plain text document. I want to get the respective names of a new line in a text document instead of everything in the same how do I?

Right now I have filled in Name1 + Name2 + Name3 under text input. Right now it’s being published as MarkMaxMartin

I want it to be published as

Mark
Max
Martin

Thanks in advance

1 Like

mention it like this
Name1+environment.newline+Name2+environment.newline+Name3

Cheers @FekkeMalin

or you can use vbCrLf, eg: Name1 + vbCrLf + Name2.

output will be:
Name1
Name2