How to Hide the "Fast Index" Admin Menu

function plt_hide_fast_index_menus() {
	//Hide the "Fast Index" menu.
	remove_menu_page('fast-index');
}

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

Where do I put this code?