class Totolotek::Lottery

Constants

NUMBERS_COUNT

Public Instance Methods

draw() click to toggle source
# File lib/totolotek/lottery.rb, line 5
def draw
  arr = []
  NUMBERS_COUNT.times do
    arr << rand(1..48)
  end
  arr
end