Documentation for this module may be created at Module:Template:Category:User:Chubs/doc

local p = {}

function p.zu (frame)
	stringy = frame.args[1]
	math.randomseed(os.time())
	out = 'z'
	times = math.floor(math.random()*10)
	for i = 1, times do
		out = out .. 'u'
	end
	return out
end

return p