How to Hide the "SiteAlert" Admin Menu

function plt_hide_my_wp_health_check_menus() {
	//Hide the "Tools → SiteAlert" menu.
	remove_submenu_page('tools.php', 'sitealert-checks');
}

add_action('admin_menu', 'plt_hide_my_wp_health_check_menus', 11);

Where do I put this code?