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
Claudia Restrepo
9,888 PointsCan't get the numbers
This is my code, i compare it with the one in the video and to me it looks the same... but still doesn't work... Am i missing something?
function alertRandom() { var randomNumber = Math.floor( Math.random() * 6 ) + 1; alert(randomNumber); }
alertRandom; alertRandom; alertRandom; alertRandom;
2 Answers
Romain Gaget
24,449 PointsHi Claudia
You are not calling your function correctly, you need to add the parenthesis: alertRandom()
Claudia Restrepo
9,888 PointsThanks! :) Saw afterwards....