# File lib/quiz1/t/solutions/Dennis Ranke/solitaire.rb, line 69
  def value_at(index)
    id = @deck[index]
    (id > 51) ? 53 : id + 1
  end