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

Why Does My Solution Not Work?

var html = '',
rgbColor;

function rgbCreator(){
  var red = Math.floor(Math.random() * 256 );
      green = Math.floor(Math.random() * 256 );
      blue = Math.floor(Math.random() * 256 );
  rgbColor = 'rgb(' + red + ',' + green + ',' + blue + ')';
};

for(i = 0; i < 10; i++){
  rbgCreator();
  html+= '<div>' + rgbColor + '</div>';
}

document.write(html);

I followed along with another person's solution, with a slight tweak in how I made mine (I think they styled their div's). Can somebody please help me understand why my solution will not generate the desired outcome? Thanks!

2 Answers

anil rahman
anil rahman
7,786 Points

var html = '', rgbColor;

why have you got var html but not var rgbColor?

anil rahman
anil rahman
7,786 Points

var html = '', rgbColor;

why have you got var html but not var rgbColor?