Unity Insert variabel ke dalam string

string name = "John";
string result = $"Hello {name}";
Dizzy Dunlin