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!
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
Alan Simpson
Courses Plus Student 1,572 PointsI do not understand the question?
I thought I was correct.
function random_age(age) {
Math.floor(Math.random() * age);
}
random_age();
<!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>
6 Answers

Jeremy Hill
29,567 PointsAll you have to do is put a number in between the parenthesis in the random_age() function.

Alan Simpson
Courses Plus Student 1,572 PointsI did this and still does not work. thanks

Jeremy Hill
29,567 PointsTry resetting your code and then enter in the number like this:
function random_age(age) {
Math.floor(Math.random() * age);
}
random_age(23);

Alan Simpson
Courses Plus Student 1,572 PointsI jumped the gun, it was correct. Thanks

Alan Simpson
Courses Plus Student 1,572 PointsThanks that worked.

Alan Simpson
Courses Plus Student 1,572 PointsThanks that worked.