const arrayOfColorFunctions = ['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f']
let randomColor = '#';
function newColor(){
for (let x = 0; x < 6; x++){
let index = Math.floor(Math.random() * 16)
let value = color[index]
randomColor += value
}
console.log(randomColor)
}
We can use newColor() function to generate sooo many colors