Learn basic java script by building a role playing game step 167

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++){

}
}
\\

Welcome back to the forum @Noobie193

  1. Check the structure of the iterator
  2. Please remove the second empty for loop
  3. Function are structured with curly braces at the beginning and the end
function name(parameter) {

  some code {
  }

  more code {
  }

}

Happy coding