“The request was made but it was not good.”

function fibonacci(size) {
   var first = 0, second = 1, next, count = 2, result = [first, second];

   if(size < 2)
      return "the request was made but it was not good"

   while(count++ < size) {
      next = first + second;
      first = second;
      second = next;
      result.push(next);
   }

   return result;
}

If Hemingway wrote JavaScript” by fat xxx.