# File lib/rantly/shrinks.rb, line 29
  def shrink
    shrunk = self.dup
    if self.size > 0
      idx = Random::rand(self.size)
      shrunk[idx] = ""
    end
    return shrunk
  end