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

Android Build a Simple Android App (retired 2014) Getting Started with Android Java Variables Explained

Marcus Bidefors
Marcus Bidefors
138 Points

Hi! 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
Stone Preston
42,016 Points

java 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