Debugging with Console & DevTools

What potential debugging issue could arise from this code?
for (let i = 0; i < largeArray.length; i++) {
  console.log(largeArray[i]);
}
Next Question (11/40)