on mouseUp
  put 0 into fib1
  put 1 into fib2
  put empty into fibList
  repeat 10 times
    put fibList & fib1 & return into fibList
    put fib1 + fib2 into temp
    put fib2 into fib1
    put temp into fib2
  end repeat
  answer fibList
end mouseUp
