I am trying to figure out where I am gone wrong with this step. I believe that the line I have type is correct but maybe I have put it in the wrong position within my code or something. Can someone please lend me some insight as to how I can fix this.
Here is the line of code:
\
function pick(guess)
for (let i = 0; i < 10; 1++) {
const numbers = ;
while (numbers.length < 10) {
numbers.push(Math.floor(Math.random() * 11));
}
text.innerText = "You picked " + guess + “. Here are the random numbers:\n”;
for (let i = 0; i < 10; i++){
}
}
\\