Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Angel Miranda
2,433 PointsI rewrote the code 3 times on workspace and all there have returned "Hello Ashley" but here it tells me its wrong.
.
def hello_student(name):
grettings = name
return "Hello" + name
print(hello_student("Ashley"))
1 Answer

Mark Sebeck
Treehouse Moderator 32,258 PointsHi Angel. You need a space after hello inside the quotes. Also you do not need the print statement. Yes that’s always good for troubleshooting. But the challenge did not ask for it and that will sometimes confuse the challenge checking logic. The second part of the question will ask you to call the function and store the result to a variable.
Good luck Angel! Keep at it.