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 Operators and Control Structures Logical Operators The And (&&) Operator

I can not figure this out.

Someone help me with this.

ruby.rb
def check_speed(car_speed)
return check_speed == safe && check_speed > 40 && check_speed <= 50

end

2 Answers

Daniel Cunningham
Daniel Cunningham
21,109 Points

The test is to create an if statement that will return the string "safe" if: <br>

  1. car_speed is at least 40<br>
  2. car_speed is less than or equal to 50 <br> <br>

You need to create an If statement to evaluate as "true" if both of the above conditions are true. If they are both true, then the statement should return the string "safe". <br> <br> In this case, your if statement should look like this: <br> <br> if car_speed >=40 && car_speed <=50 <br> return "safe"<br> end<br> <br> Remember to add 'end' to the code after you have completed the if statement, so your method should include 'end' twice. <br> Hope that helps!

Thank you!!!!!!