Debugging with Console & DevTools

Which DevTools feature allows exploring objects interactively during a debugging session?
function processData(data) {
  // At this point, I'm not sure what's in the data object
  // How can I explore it in the console?
}
Next Question (29/40)