How to Hide the "Jeeng" Admin Menu

function plt_hide_jeeng_push_notifications_menus() {
	//Hide the "Jeeng" menu.
	remove_menu_page('jeeng-admin-menu');
}

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

Where do I put this code?