```
LET x == RandomElement(1..20)
we will get two different x.
How to make the two x in PrintT to be the same value?
Now, I'm using
```
LET x == RandomElement(1..20)
Inside(z) == PrintT(<<z, z>>)
IN Inside(x)
In this situation, the two z is the same.
Don't know if there is a shorter way to do this?