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 trialMario Rodrigues
1,085 PointsI need help with a challenge I'm doing.
I need help with a challange involving Ruby Methods.
def mod(a, b) puts "The remainder of #{a} divided by #{b} is c. end
mod It's saying wrong number of expected arguments
def mod(a, b)
puts "The remainder of #{a} divided by #{b} is c"
end
mod
1 Answer
Angela Huffman
Courses Plus Student 10,159 PointsReturn, versus puts tripped me up today, too.
Gotta watch the specific language in the prompt.
Will Taylor Smith
1,370 PointsWill Taylor Smith
1,370 PointsHi Mario,
Firstly, in your code c is not defined. So I would start by defining c according to the prompt.
Secondly, the challenge calls for you to return the sentence, not puts.
With those 2 things in mind, give it another try! Otherwise, I can explain it further if needed.