<div id="slider"></div>
<div id="num"></div>
<script>
var n = 234345567;
+function b()
{
n += Math.random() * (1000000 - 50000) + 50000;
n = Math.round(n);
num.textContent = n.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g,',');
setTimeout(b, Math.random() * 2000)
}()
</script>