When a value is copied by reference, any changes you make to the value of the source variable in subsequent flow steps affect the target variable. This is because the value of the source variable is the value of the target variable. The target variable does not contain a copy of the source variable value. If, in a later flow step, you used
to assign a value to the source variable, you would be changing the value of the target variable as well. (The target variable references the value of the source variable.)