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 trialEva Pradhan
821 PointsCreate 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
def multiply(argument1, argument2)
puts argument1, argument2
end
2 Answers
Marco van Vemden
12,553 PointsHi 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
Iryna Kovalova
2,027 PointsThanks!!
Eva Pradhan
821 PointsEva Pradhan
821 Pointsoops! Thanks a lot that was a bummer.