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.

Ping Li
2,689 PointsHow do I do this? What's wrong?
You've seen how random.choice() works. It gets a random member from an iterable (like a list or a string). I want you to try and reproduce it yourself. First, import the random library. 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.
import random
def random_item("Hello"):
num = random.randint(0, len("Hello") - 1)
return("Hello"<num>)
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"

Ping Li
2,689 PointsIt was.
1 Answer

Steven Parker
216,012 PointsYou can't use literal strings as function parameters.
Everywhere you have "Hello"
, you should have a variable name instead. That variable will represent the actual value given to the function when it is called.
Also, when subscripting you enclose the index in square brackets ("[]
") instead of angle brackets ("<>
").
Jose Aguirre
14,866 PointsJose Aguirre
14,866 PointsHey Ping Li, Although "Hello" is an iterable, you want to put a variable in its place. For example
When returning the index of the string at num use [] square brackets instead of <>. Let me know if this was helpful.