How to Hide the "BS Math Captcha for Elementor" Admin Menu

function plt_hide_math_captcha_for_elementor_forms_menus() {
	//Hide the "Settings → BS Math Captcha for Elementor" menu.
	remove_submenu_page('options-general.php', 'bs_math_captcha_for_elementor_option');
}

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

Where do I put this code?