Debugging with Console & DevTools

Which DevTools panel would help identify the performance problem in this code?
for (let i = 0; i < 1000; i++) {
  document.getElementById('result').innerHTML += `<div>Item ${i}</div>`;
}
Next Question (27/40)