How to Hide the "Kognetiks Chatbot" Admin Menu

function plt_hide_chatbot_chatgpt_menus() {
	//Hide the "Kognetiks Chatbot" menu.
	remove_menu_page('chatbot-chatgpt');
}

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

Where do I put this code?