Problem with value in loop

Hi everyone,
I can’t update the value of a variable inside a loop.
In the screenshot you see my example.
The initial value of txCognome is ‘Rossi’ so the loop should add 25 ‘+’ to the string.
Instead drawing the variable after the loop leaves it with the original value ‘Mike’

Screenshot 2023-11-22 092137

Use Global Name and don’t use the same names for both fields

What is the purpose of this expression: {{txCognome+'+'}}?

it was just a test to see if it concatenated the string to the original variable.
I should actually add some blanks

Add the same global name for these two steps:

Screenshot 2023-11-22 at 11.11.54

YES it works now, I only set the global name