This information is correct. In my case i could get away with: myStringArray = new string[2] myStringArray[0] = "Heal " myStringArray[1] = "Shield " Debug.Notification(myStringArray[0] + "- " + myStringArray[1]) Without the additional space heal will come out all lower case and shield all upper case. Since this thread is the only worthwile google result i figured that might help someone someday, though obviously doing it like this has its own issues.