How can I exclude the comas?

This is an excert of my program:

[AS]for (n=0;n<t/2;n++){
tabela1 = tabela1.concat(sorteio[n],"
");
}[/AS]

and the problem is that the words apear between comas.

Keep the good work

I assume that somewhere you’re using sorteio?

for instance:


trace(sorteio);
//or
my_text.text = sorteio

Try replacing sorteio with sorteio.join("");

the above examples would become:


trace(sorteio.join(""));
//or
my_text.text = sorteio.join("");

thanks for the help, but the output is a dinamic text, whit the name tabela1, I forgot to tell that