How to Hide the "Ask Me Anything" Admin Menu

function plt_hide_ask_me_anything_anonymously_menus() {
	//Hide the "Settings → Ask Me Anything" menu.
	remove_submenu_page('options-general.php', 'ask-me-anything-shortcode-generator');
}

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

Where do I put this code?