Press the following key combination to trigger the alert:
Alt + A
document.addEventListener('keydown', function(event) {
if (event.altKey && event.key === 'a') {
alert('Hello from SAIT!');
}
});
When you press the keys, you will see this message:
Hello from SAIT!