What does this page log in a browser?

from Semantic HTML
HTML Living Standard beginner 2 min

What does this page log in a browser?

HTML
<button id="save">Save</button>
<div id="status">Idle</div>
<script>
  const button = document.querySelector('#save');
  const status = document.querySelector('#status');
  console.log(`${button.tabIndex},${status.tabIndex},${button.type}`);
</script>
Open in playground
Report an error