string color = blue; // Both versions do the same thing. Console.WriteLine("The sky is " + color); Console.WriteLine($"The sky is {color}"); //Note the dollar ^sign and ^curly^ brackets.