How can i make dynamic spaces for letters in quiz game?

I have a quiz game in unity, im trying to make a dynamic answer text box in unity so that when i press one of my letter buttons it fills out the blanks. I’m having an issue trying to create the blanks first of all so they match the answer, and making them fill in on button press. see example… can anyone help?123708-unitything.png

Store the letters twice, once with all the letters and another with empty letters, then compare the two. When you press A, check the complete list if it contains an A, get the indexe’s and iterate over the other list and pass in the A’s. Kind of a rough idea but hope it helped.

here is an example of finding and replacing missing letters:

	public string real = "monkeys eat bannannas";
	public string show = "_onk_ys _at ba__a__as";


	void Update(){
		//push the missing letters on the keyboard
		if(Input.inputString.Length==1){
			string s = Input.inputString;
			int i = real.Length;
			while(i>0){i--;
				if(real.Substring(i,1)==s){
					string set = show.Substring(0,i)+s;
					if(i<show.Length){set = set +show.Substring(i+1);}
					show = set;}}}}