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.

Hermes Crespo
980 PointsThe code I typed compiled perfectly, why is the site stating that my answer is wrong?? Line 17 is correct, the ....
... comparison on this line is logical. Why is my code wrong??
namespace Treehouse.CodeChallenges
{
class Frog
{
public readonly int TongueLength;
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
public bool EatFly(int distanceToFly)
{
Frog frog = new Frog(TongueLength);
bool eatFly = frog.TongueLength = distanceToFly;
return eatFly;
}
}
}
1 Answer

andren
28,538 PointsYou have a typo. You aren't actually making any comparison on this line, but an assignment:
bool eatFly = frog.TongueLength = distanceToFly; // frog.TongueLength is set equal to distanceToFly
I assume you meant to type >=
not =
if you fix that typo like this:
bool eatFly = frog.TongueLength >= distanceToFly; // = changed to >=
Then your code will be accepted.
Hermes Crespo
980 PointsHermes Crespo
980 PointsThanks a million !! :)