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 Treehouse Club - MASH MASH - JavaScript The Structure of Functions - Part 3 of 3

Call the function by giving an age in the space for a parameter. Help me

m

script.js
function random_age(age) {
  Math.floor(Math.random() * age);
}
random_age();
index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Futuristic MASH</title>
    <link href="normalize.css" rel="stylesheet">
    <link href="style.css" rel="stylesheet">
  </head>
  <body>
    <h1 class="logo"><img src="img/mash-logo.svg" /></h1>
    <p class="instructions">Fill in the blanks and your future will be foretold.</p>
    <form action="" method="post" id="mash">
      <div class="choice-bucket">
        <h4 class="highlight">What's your future pet?</h4>
        <input name="pet[]">
        <input name="pet[]">
        <input name="pet[]">
        <input name="pet[]">
      </div>
      <input type="submit" value="Tell my fortune">
    </form>

    <script src="script.js"></script>

  </body>
</html>

Saying Help me is not very productive? Your title is really ambiguous, please elaborate on what you are looking to achieve?

2 Answers

Dylan Macnab
Dylan Macnab
24,861 Points

I think what they're asking you to do is pass a number in the random_age function when it's called on the last line like so:

function random_age(age) {
  Math.floor(Math.random() * age);
}
random_age(25);

IT WORKED!

Forrest,

I haven't watched the course you're doing. Is that random_age function provided to you or you had to write that as part of a challenge?

In any case, in order to call the random_age function you need to pass it a number for the age parameter. So you call the function like so:

random_age(23);

I just used the number 23 as an example, but you can use any number you want.