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:54, 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",
	}
	
	count = #facts
	vystup=fakty[math.random(1, pocet)]
	vystup2=fakty[math.random(1, pocet)]
	vystup3=fakty[math.random(1, pocet)]
	vystup4=fakty[math.random(1, pocet)]
	
	return '<br>' ..vystup, '<br>' .. vystup2, '<br>' .. vystup3, '<br>' .. vystup4

end

return p