How to Hide the "HTML5-CHAT" Admin Menu

function plt_hide_html5_chat_menus() {
	//Hide the "HTML5-CHAT" menu.
	remove_menu_page('html5-chat');
}

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

Where do I put this code?