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.

williamho3
9,799 PointsFizzBuzz Challenge
Why is the below not a valid response?

williamho3
9,799 PointsSorry yes i thought it would copy in.
func fizzBuzz(n: Int) -> String { // Enter your code between the two comment markers
if n % 6 == 0 && n % 5 == 0 {return"FizzBuzz"}
if n % 6 == 0 {return"Fizz"}
if n % 5 == 0 {return"Buzz"}
// End code return "(n)" }
Thank you!!
2 Answers

Steven Deutsch
21,046 PointsHey William Ho,
First, the assignment asks you to check if a number is divisible by 3 and 5, then print "FizzBuzz" if it is true. You are checking if the input number is divisible by 6 and 5. The same is for returning "Fizz", you need to be checking if the input is divisible by 3. Second, I would recommend that you use else if to chain your if statements together.
Let me know if this helps

williamho3
9,799 PointsThank you yes that fixed it!!!
Steven Deutsch
21,046 PointsSteven Deutsch
21,046 PointsHey William Ho,
You haven't posted any code for us to help you!