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.

Josh Icenogle
9,257 PointsString Equality
I am stuck on this and cannot figure it out please help i submit it and it tells me i am wrong so i hit preview it doesn't display what is wrong and i myself cannot figure out what is wrong with it please point out my mistakes. here's the code: String firstExample = "hello"; String secondExample = "hello"; String thirdExample = "HELLO";
if (firstExample.equalsIgnoreCase(thirdExample)){
console.printf("first and third are the same ignoring case"); }
// I have imported a java.io.Console for you, it is named console.
String firstExample = "hello";
String secondExample = "hello";
String thirdExample = "HELLO";
if (firstExample.equals(secondExample)){
console.printf("first is equal to second");
}
1 Answer

Jennifer Nordell
Treehouse TeacherHi there! Your code looks fine and passes for me. My concern here is that you removed the previous if
statement from the first step and replaced it with the one that compares the first and third ignoring case. You need to leave the code from the previous step intact. Your ending code should have two if statements... not just one.
Hope this helps!
Josh Icenogle
9,257 PointsJosh Icenogle
9,257 PointsThanks so much!