<?php

	$stats = array(
		"Gold"=>"12345678",
		"Silver"=>"1233333",
		"Metal"=>"99999"
		);
		
	foreach($stats as $key => $value) {
    	$result = number_format($value);
    	echo $key.": ".$result."\n";
	}