How to Hide the "Chat Modul" Admin Menu

function plt_hide_chat_ai_with_dispatcher_menus() {
	//Hide the "Chat Modul" menu.
	remove_menu_page('chat-ai-with-dispatcher-settings');
}

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

Where do I put this code?