How to set unique values from a String2Character Array into TextRender Set Text value

Hi Iam looking for a method to set up a unique values extracted from a string to character array, into a list of TextRenders preserving uniquness

For instance what i kinda did:
StringsM = UNREAL
Engine
TheBest

I take first string = UNREAL

I go iterate thru it

Iteration 1: We get Index 0 = we get value U and i need to somehow set this value to SetTextRenderValue1
Iteration 2: We get index 1 = we get value of N and i need to put it to SetTextRenderValue2

How i can do it?

Here it is a rough idea of what i currenly did.

Could you not just create an array and then use addUnique?

I solved my question! Thanks i iterated thro 2 arrays and assigned indexex to match each other.