How to Hide Dynamic Elementor ACF Repeater Admin Menus

function plt_hide_dynamic_elementor_acf_repeater_menus() {
	//Hide the "WP Luna" menu.
	remove_menu_page('wp-luna');
	//Hide the "WP Luna → Dynamic Elementor ACF Repeater" menu.
	remove_submenu_page('wp-luna', 'dynamic-elementor-acf-repeater');
	//Hide the "WP Luna → Upgrade" menu.
	remove_submenu_page('wp-luna', 'dynamic-elementor-acf-repeater-pricing');
}

add_action('admin_menu', 'plt_hide_dynamic_elementor_acf_repeater_menus', 1000000000);

Where do I put this code?