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.

EMEKA OKIKE
5,680 PointsThen create a function named random_item that takes a single argument, an iterable. Then use random.randint() to get a
Then create a function named random_item that takes a single argument, an iterable. Then use random.randint() to get a random number between 0 and the length of the iterable, minus one. Return the iterable member that's at your random number's index. Check the file for an example.
I KEEP GETTING A NameError: name random_item not define. please can you me out
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"
import random
def random_item(treehouse):
a = random.randint(0, len(treehouse)-1)
return treehouse [h]
2 Answers

Chris Freeman
Treehouse Moderator 67,986 PointsVery close. Looks like a typo in your return line: "h" should be "a"
Regarding coding style, there shouldn't be a space between "treehouse" and "[a]".

EMEKA OKIKE
5,680 Pointsthank you sir, i got it now