function mergeLists list1,list2
  toComputer
  put list1 into mergedList
  put number of lines in list1 into x
  put list2 into line x+1 of list1 into mergedList
  return mergedList
end mergeLists