Issue with FString and loading from file

Hmm… okay that is odd.
This works
for (int j = 0; j < stringArray.Num(); j++) {
temp += stringArray[j];
}

This does not
temp = stringArray[2] + ", ";
//temp += stringArray[0] + " ";
//temp += stringArray[1];