How to Hide the "Jotform AI Chatbot" Admin Menu

function plt_hide_jotform_ai_chatbot_menus() {
	//Hide the "Jotform AI Chatbot" menu.
	remove_menu_page('jotform_ai_chatbot');
}

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

Where do I put this code?