module Faker::Movie

def maybe_adj_or_adv

def maybe_adj_or_adv
  if rand(2) == 1
    ADJ_AND_ADV.rand + " "
  end
end