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.

Hasseeb Hussain
2,154 PointsCan't see the mistake I've made
What have I done wrong?
var results: [Int] = []
for n in 1...100 {
if (n % 2 = 0) && (n % 7 = 0) {
results.append(n)
}
}
1 Answer

Jason Anders
Treehouse Moderator 145,624 PointsHi Hasseeb,
You have two error (well, one error in two spots).
First, lets clear up the usage of the equal sign. A single equal sign (=)
is an assignment operator, but you are trying to use it to compare values. For this, you need to be using the double equal sign (==)
.
Second, the challenge instructions explicitly ask to check for odd numbers, but you are trying to check for even numbers. So, for the first condition, you need to negate the answer using the bang
(or "not") symbol (!)
. This will check and pass only if the modulus is not equal to zero.
Once those are fixed up, you get:
for n in 1...100 {
if (n % 2 != 0) && (n % 7 == 0) {
results.append(n)
}
}
Keep Coding!
Hasseeb Hussain
2,154 PointsHasseeb Hussain
2,154 PointsThanks Jason!