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 Conditional ints

this is my code on task 1. and its not working

what am i missing ?

Conditional.java
int number Of People = 3; 

2 Answers

Binyamin Friedman
Binyamin Friedman
14,615 Points

Spaces aren't aloud in naming stuff in java. You could do: int numberOfPeople = 3;

Moderator Edit: Moved response from Comment section to Answers.

To elaborate on Benyamin's answer, if you want to combine more than one word make sure the first word is lower case and then the first letter of each other word is capitalized. This lets other programmers know what the words are since Java script won't read the spaces in your code.