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 2

Create a method called "multiply" that takes two arguments. Oops! It looks like Task 1 is no longer passing.

not sure but keep getting the same error go back to task one

method.rb
def multiply(argument1, argument2)
  puts argument1, argument2
end

2 Answers

Marco van Vemden
Marco van Vemden
12,553 Points

Hi Eva, You need to keep the code from Task 1 (the subtract method) in the solution of Task 2. Like this:

def subtract(argument1, argument2)
end

def multiply(argument1, argument2)
end

oops! Thanks a lot that was a bummer.