How to Hide Riddle Quiz Maker Admin Menus

function plt_hide_riddle_playful_content_on_the_go_menus() {
	//Hide the "Riddle Plugin" menu.
	remove_menu_page('riddle-admin-menu');
	//Hide the "Riddle Plugin → Connect account" menu.
	remove_submenu_page('riddle-admin-menu', 'riddle-admin-menu');
	//Hide the "Riddle Plugin → Help" menu.
	remove_submenu_page('riddle-admin-menu', 'riddle-help');
}

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

Where do I put this code?