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!
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 trial3 Answers

Gloria Dwomoh
13,104 PointsHi Seyfullah. The question itself tells us what to do; it says... "For the first parameter of Log.d() (the tag), use “CodeChallenge”, and use the 'message' variable as the second parameter." We know that the .d() method takes parameters d (String tag, String msg). I hope this helps you figure out the solution, if you still can't get it you can paste what you wrote as a solution so we can help.

pravin kerai
10,081 PointsLog.d("CodeChallenge".LOG, 'message');
this doesn't work for me?

Gloria Dwomoh
13,104 PointsHi Pravin, that's not the way it suppose to be, that's why. The TAG supposed to be "CodeChallenge" not ""CodeChallenge".LOG."

pravin kerai
10,081 Pointsgot it!

Seyfullah Erdogan
1,922 PointsTHANKS GUYS