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 trial
Gena Israel
2,047 Pointsnot understanding what this exercise is asking
function returnValue (chicken) { return returnValue(chicken)};
function returnValue (chicken){
return returnValue (chicken)};
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
3 Answers

Alexander Davison
65,468 PointsYou just need to return the chicken
argument itself. :)

Andrew Hunt
7,665 PointsI think you just need to return the argument rather than actually calling the function in your return statement (if that makes sense). The following seemed to pass for me:
function returnValue(chicken) { return(chicken); }
I guess it's a question of getting used to the function syntax rather than this particular function being really useful.

nathanielcusano
9,808 PointsThe argument is what lies between the parenthesis (). Therefore you need to only write.
return chicken;
That's it.