I wand to hide a button to all users except admin or owner but with my code below its not working.

import wixUsers from'wix-users';

$w.onReady(function () {
const currentUser = wixUsers.currentUser;
if (currentUser.role === 'Admin' { 
       $w('#button5').show();
} else {
       $w('#button5').hide();
       }

});