function verify(){
    msg = "Are you sure you want to report this badger?";
    //all we have to do is return the return value of the confirm() method
    return confirm(msg);
    }
