Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sal Sal
47 PointsI 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

DaJuan Harris
4,871 PointsTry posting your code.
1 Answer

Daniel Salvatori
2,658 PointsI 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.
Brian Miller
Courses Plus Student 6,696 PointsBrian Miller
Courses Plus Student 6,696 PointsSame 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);