How to Hide the "Hello I am here!" Admin Menu

function plt_hide_hello_i_am_here_menus() {
	//Hide the "Hello I am here!" menu.
	remove_menu_page('meet_reunion');
}

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

Where do I put this code?