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! While you're at it, check out some resources Treehouse students have shared here.
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 trialLorrie Rutledge
271 PointsI don't understand this question. Can you explain what this means to multiply by 52 then 7. my answer days=([age*52]*7)
The question is not clear to me. I'm not sure what is being asked.
age=21
days=([age*52]*7)
1 Answer
Gloria Dwomoh
13,116 PointsUsually brackets are used to signify things like arrays, lists, and some other data structures; so that will give you an error. You should use parenthesis instead or you can even write it like ex.(X * 3)*5