debugger Statement Usage

How does the debugger statement behave with async functions?
async function fetchUserData() {
  debugger;
  const response = await fetch('/api/user');
  const data = await response.json();
  return data;
}
Next Question (5/20)