' Central limit theorem ' using Vbsedit's free Toolkit ' rolling a large number of identical, unbiased dice ' https://en.wikipedia.org/wiki/Central_limit_theorem
Randomize
Set pivot = CreateObject("Vbsedit.PivotTable") pivot.Initialize 2,1 pivot.SetColumnNames "Sum","n","Number of events"
total=100000
For n=2 To 7 WScript.Echo n For k=1 To total s=0 For i=1 To n s = s + Int(6 * Rnd + 1) Next