Debugging with Console & DevTools

If the complexProcessing function is slow, which DevTools panel would best help identify the performance impact?
function processItems(items) {
  const result = [];
  for (let i = 0; i < items.length; i++) {
    const processed = complexProcessing(items[i]);
    result.push(processed);
  }
  return result;
}
Next Question (21/40)