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 trialMarcus Bidefors
138 PointsHi! I'm a little stuck here what hava I missed? :(
Task 1 of 1:
favoriteColor String equals = "Green"; String MyName = "Marcus";
1 Answer
Stone Preston
42,016 Pointsjava variables generally look like this:
dataType variableName = value;
for this challenge all you need to do is move some things around and make a few changes to the one line here:
favoriteColor String equals = "Green";
you dont need to add another variable so remove String MyName = "Marcus";
and fix the favoriteColor variable to make the syntax correct