Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Basics Perfecting the Prototype Censoring Words - Using Logical ORs

Bergomy Legendre
Bergomy Legendre
1,026 Points

IIlegal start of expression

TreeStory.java:23: error: illegal start of expression
if(noun.equalsIgnoreCase("dork")) ||(noun.equalsIgnoreCase("jerk")); {
^ Not sure whats going on?

1 Answer

SH Ding
SH Ding
3,125 Points

Hi Bergomy, this should work:

if (noun.equalsIgnoreCase("dork") || noun.equalsIgnoreCase("jerk")) { ..... }

  1. The Outer Brackets is used for the whole if condition.
  2. The semicolon after"jerk" isn't required as this is an IF statement