The Modal Opened on Screen but Didn’t Exist for the Keyboard

<div role="dialog"     aria-modal="true"     aria-labelledby="modal-title"     tabindex="-1"     id="brand-modal">  <h2 id="modal-title">Important Safety Information</h2>  <!-- modal content here --></div>
const modal = document.getElementById("brand-modal");modal.focus();
triggerElement.focus();