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 trialRodrigo Rocha
4,042 PointsBlog Reader Project Overview
What is wrong with this code. The exercise workspace don't like me?
This is a Challenge
Finally, write the 'message' variable to the log using the Log.d() method. For the first parameter of Log.d() (the tag), use “CodeChallenge”, and use the 'message' variable as the second parameter.
And this is my code:
String title1 = "Android is awesome"; String title2 = "Mike is cool"; String title3 = "Treehouse loves me"; String[] titles = { title1, title2, title3 }; String message = titles[1];
Log.d(“CodeChallenge”, message);
I tried with other codes too:
String title1 = "Android is awesome"; String title2 = "Mike is cool"; String title3 = "Treehouse loves me"; String[] titles = { title1, title2, title3 }; String message = titles[1]; public static final String TAG = “CodeChallenge”;
Log.d(TAG, message);
And I tried with others code too but nothing works in this challenge.
2 Answers
Gunjeet Hattar
14,483 PointsI did the same and it worked for me
If it still doesn't work then you need to address this to a Treehouse teacher
Rodrigo Rocha
4,042 PointsNow it's works! Thanks!