Notifications with javascript client side

I have students who want to send push notifications. We are using chrome. This example shows using only javascript - I modified it to work in appstudio. When it runs, Chrome asks if notifications are OK - but it never shows the message/notification. Any thoughts?

/*
Original sample code: 
(from https://www.youtube.com/watch?v=Bm0JjR4kP8w) 

const button = document.querySelector("button")

button.addEventListener("click",() => {
    Notification.rewuestPermission() .then(perm => }
        const notification = new Notification("Example Notification",{
               body: "This is a  new notification",
               data: {hello: "world"}
        })
     }    
        
  })

})

*/



// my adapted code
// asks for permission but doesn't show notification (in Chrome)

Button1.onclick=function(){
    Notification.requestPermission().then(perm => {
         if (perm === "granted") {
                const notification = new Notification("Example Notification")
        }
    })
}
                
                
                /*
                , {
                body: Math.random(),
                data: {hello:"world"},
                // icon: "picName.png",
                })
         notification.addEventListener("error", e=> {
                alert("error")
         })
         
         }
    })
}*/


Have a look at the YouTube comments for this video: there are a number of interesting comments.

(This isn’t an AppStudio issue - it’s more of general JavaScript/Web topic)