Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Margaret Macharia
8,870 PointsI need help with the last task in C# Basics.
using System;
namespace Treehouse.CodeChallenges { class Program { static void Main() { Console.Write("Enter the number of times to print \"Yay!\": ");
}var numOfTimes = System.Console.ReadLine();
int num = int.Parse(numOfTimes); for (int i=0; i<num; i++) { // < Console.WriteLine("\"Yay!\"") ; }
1 Answer

Steven Parker
225,769 Points
It looks like you have a misplaced brace.
The closing brace ("}
") directly in front of "var" should probably be at the end of the file instead.
To enable the best responses, always include a link to the course page you are working with, and be sure to quote your code using the instructions in the Markdown Cheatsheet pop-up found below the answer area