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

My Solution

Here is my solution without any help. I had to sit for maybe half an hour and write out pseudocode and think it out. I was close to many others but glad that I can come up with a version of the solution. I used arrow functions and arrays.

let html = '';
const main = document.querySelector('main');

const randomRGB = value => {
  let array =[];
  for(let i=1; i <=3; i++){
    const color = Math.floor(Math.random() * 256);
    array.push(color);
  }
  let colorChange = `rgb( ${array[0]}, ${array[1]}, ${array[2]} )`;
  return html += `<div style="background-color: ${colorChange}">${value}</div>`;
};

const colorRange = numLength => {
  for(let i = 1; i <=numLength; i++){
    randomRGB(i);
  }
  main.innerHTML = html;
};

colorRange(10);