A table with header and caption

<pinp>
	$tableData = array(
		array( 'nl', 'Netherlands', 'Dutch' ),
		array( 'de', 'Germany', 'German' ),
		array( 'fr', 'France', 'French' ),
		array( 'uk', 'United Kingdom', 'English' ),
		array( 'be', 'Belgium', 'Dutch, French' )
	);
	echo ar('html')->table( $tableData )
	->head( array('ISO Code', 'Country', 'Languages') )
	->caption( 'Countries and languages by ISO Country Code' );
</pinp>