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.

omer syed
8,634 PointsI dont see a constructor named ReactionTime... am i blind?
Im not sure what this is asking.
namespace Treehouse.CodeChallenges
{
class Frog
{
public readonly int TongueLength;
public readonly int ReactionTime;
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
public bool EatFly(int distanceToFly)
{
return TongueLength >= distanceToFly;
}
}
}
1 Answer

andren
28,538 PointsThe wording is a bit ambiguous. It is not asking you to add a parameter to a constructor called reactionTime
, but rather to add a parameter called reactionTime
to the constructor.
Constructors are always named the same as the class they are inside of, that is literally a part of the requirements of making a constructor. So the constructor is named Frog
.
Basically it is just telling you to do the exact same thing that is currently being done with the TongueLength
field. Add a parameter for ReactionTime
to the Frog
constructor, and assign it a value within the constructor.