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

JavaScript JavaScript Basics (Retired) Creating Reusable Code with Functions Create a max() Function

Random Number Challenge Part II

function max (x , i) { if (x >i ) { return x; } else { return i ; }

alert ( max( i, x)); }

now where am i wrong?

script.js
function max (x , i) {
  if (x >i ) {
    return x;
  } else {
    return i ;
  }

alert ( max( i, x));
}

2 Answers

You must pass numbers as the arguments to give as the value of x and i.

alert(max(5, 10));
Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Chyno Deluxe is correct, but your function call must also be outside of the actual function you are calling. So, just move the alert line to after the last closing brace.

:dizzy:

Good Catch I missed that.