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 Loops, Arrays and Objects Simplify Repetitive Tasks with Loops The Refactor Challenge Solution

I cannot see anything on the browser by previewing the workspace or even by typing the same code in my editor.!!!

I cannot see anything on the browser by previewing the workspace or even by typing the same code in my editor.!!! Please help

Brian Miller
Brian Miller
Courses Plus Student 6,696 Points

Same thing with me, and i have tried chrome, firefox, and ie11.

var html = ''; var red; var green; var blue; var rgbColor;

for ( var i = 1, i <= 10, i += 1) {

red = Math.floor(Math.random() * 256 ); green = Math.floor(Math.random() * 256 ); blue = Math.floor(Math.random() * 256 ); rgbColor = 'rgb(' + red + ',' + green + ',' + blue + ')'; html += '<div style="background-color:' + rgbColor + '"></div>'; }

document.write(html);

Try posting your code.

1 Answer

Daniel Salvatori
Daniel Salvatori
2,658 Points

I have the same issue. I copied the code exactly as Dave did and when I hit preview nothing shows up at all, no errors in the console either.