How to assign the value of one array to another array

Whenever I run, I assign the last value of the Array Text to all the values of the New array. How do I solve this problem?

1 Like

Yes, it’s because you’re using each value of the text array for all values of the render array!

Get rid of the second loop. Instead do

Set text [ array index ] = array text [ array index ]

( array index comes from the first loop in both cases ).

Thanks for your answer. I 've solved this problem successfully. :slight_smile: