Confused In Overboarding C# program

I am not able to make the pass. I keep getting the error. This is the very first test of the Onboarding puzzle

Edit: No full code => Console.WriteLine(enemy1);

"enemy1" is a string
enemy1 is an identifier, naming a variable

Console.WriteLine("enemy1"); will print out the string “enemy1”
Console.WriteLine(enemy1); will print out the string representation of the value stored in variable enemy1

2 Likes

awesome, thanks mate