"User Authentication with Rails" was retired on February 24, 2020.

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 Methods Method Arguments: Part 1

this challenge makes absolutely no sense to me. i obviously cannot change the name of the method

it doesn't make sense for 2 reasons

  1. i obviously cannot change method.rb to hello.rb because its locked in place 2.do you want me to add, subract, put? the instructions are WAY too vague
method.rb
def (a)
end
```'i also tried this 
def add(a)
puts a
end

add("hello")

2 Answers

andren
andren
28,558 Points

They aren't asking you to rename they file, they ask you to make a method named hello, and the instructions doesn't provide more detail than that because that is all they require you to do. The method you create does not need to do anything, you just need to make it and name it "hello". Like this:

def hello(a)
end

oh i see ! you can name them individually. thats cool.