Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Chad Leonard
4,368 Points...Swift code for "FizzBuzz" challenge works fine in the compiler, but won't work in the editor?
I have made the edits as instructed, but continue to get an error. Not sure what I have missed? This is the code as it is in the editor.
for n in 1...100 {
if (n % 3 == 0) && (n % 5 == 0) {
return"FizzBuzz"
} else if (n % 3 == 0) {
return"Fizz"
} else if (n % 5 == 0) {
return"Buzz"
} else {
return n
}
}
1 Answer

Jennifer Nordell
Treehouse TeacherWould it be encouraging to know that your code is fine and your logic is spot on? The problem here is that you missed part of the instructions:
"Note: Do not worry about the default case (where the number doesn't match Fizz, Buzz, or FizzBuzz). The code in the challenge editor already takes care of that by returning the number as a string using string interpolation.
The challenge also does not need you to loop over a range of values (using for or while). I'll take care of that."
What this means is that you should remove the last else statement and the for in range Make those changes, and your code passes!
Chad Leonard
4,368 PointsChad Leonard
4,368 PointsThanks a bunch! Guess it would help if I knew how to follow directions