Jump to content

Module:Sandbox/AngryBiceps

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MarekKocka (talk | contribs) at 08:57, 14 April 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}; 

p.randomFacts = function(frame)     
	
	local facts = {
		"Text1",
		"Text2",
		"Text3",
		"Text4",
		"Text5",
		"Text6",
		"Text7",
		"Text8",
	}
	
	max = #facts
	output=facts[math.random(1, max)]
	output2=facts[math.random(1, max)]
	output3=facts[math.random(1, max)]
	output4=facts[math.random(1, max)]
	
	return '<br>' ..output, '<br>' .. output2, '<br>' .. output3, '<br>' .. output4

end

return p