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.

luis cantu
927 PointsI am getting 6 tries instead of 7...
When I run the program on the console I am getting "You have 6 tries left to solve" instead of 7... I don't know what it could be... At the begining I thought that was a scope issue but it doesn't seem that
1 Answer

Dave StSomeWhere
19,822 PointsI think your issue is that you are initializing misses to a space instead of an empty string. So the first time through misses.length will equal 1.
// in Game.java
// should be "" not " " (also hits should be fixed)
misses = " ";
// then this should be evaluated correctly
public int getRemainingTries(){
return MAX_MISSES - misses.length();
}
luis cantu
927 Pointsluis cantu
927 PointsYes, it works now, thank you :D