Little scripting help required.

Hi , I need little help regarding my script.

I have a file called abc which looks below.

Rohan  12
Rakesh 23
Ajay 25

Another file looks like this (xyz).

Mumbai
Delhi
Madras

How would i add column mentioned in second file so that the file looks as below.

Rohan  12 Mumbai
Rakesh 23 Delhi
Ajay 25 Madras
 paste abc xyz
#!/bin/bash

exec 4<"xyz"
while read -r LINE
do
  read L <&4
  echo $LINE $L
done <"abc"
exec 4<&- # close file descriptor