How to Hide the "Nutaan Chatbot" Admin Menu

function plt_hide_nutaan_widget_menus() {
	//Hide the "Settings → Nutaan Chatbot" menu.
	remove_submenu_page('options-general.php', 'nutaan-widget');
}

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

Where do I put this code?