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 trial

Ruby Ruby Basics (Retired) Ruby Strings String Methods

Kyle Shamblin
Kyle Shamblin
9,945 Points

I typed reverse. name.reverse should reverse "Treehouse", right?

I'm not sure whats going on. Is this a bug?

2 Answers

Steven Ang
Steven Ang
41,751 Points

I'm not entirely sure which question you're talking about, but I'll just assume is the question that requires you put two methods. In that question, they ask you to first reverse it by using the reverse method and then make them lowercase. Like this:

name = "Treehouse"
name.reverse.downcase
Andrew Gordon
Andrew Gordon
2,111 Points

On the question that expects two methods, there are TWO input fields. I was entering "reverse.downcase" in the first field, not realizing there was another. Use both input fields and you'll be golden.