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.

annikaheflin
577 PointsI still don't get it
What else do I have to do until I can pass this?
import random
def random_item(pen):
pen = [
'life'
'love'
'live'
'learn'
'eat'
'pray'
'enjoy'
'happy']:
n = random.randint(1,len(pen))
return pen[n-1]
# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"# EXAMPLE
# random_item("Treehouse")
# The randomly selected number is 4.
# The return value would be "h"
2 Answers

Alex Koumparos
Python Development Techdegree Student 36,862 PointsHI Annika,
Just remove your redefinition of pen.
Cheers
Alex

Tor Ivan Boine
4,057 Pointsyou don't need:
pen = [
'life'
'love'
'live'
'learn'
'eat'
'pray'
'enjoy'
'happy']:
Also, thank you for clearing things up for me Annika. Your code helped me with my code :)
import random
def random_item(y):
x = random.randint(0,len(y))
return y[x-1]