Problem with displaying RFID ID

I have recently gotten a Parallax RFID reader and I was trying to make it work with my Arduino uno. I have gotten all the necessary wires attached and I used a RFID reading program I found from Make (I will put the code at the bottom). When I open serial monitor and move an RFID card near it, it spits a series of x's and ø's(eg. xxxxøxxxxøxxøø). I am expecting to see a combination of letters and numbers. I think its a problem with the code, but I dont know enough about it to know whats wrong. I have recently updated the Arduino software.

The code can be found at http://cdn.makezine.com/make/28/RFIDread.pde

The RFID reader can be found here http://www.parallax.com/Store/Microcontrollers/BASICStampModules/tabid/134/txtSearch/rfid/List/1/ProductID/114/Default.aspx?SortField=ProductName%2CProductName

You probably have the COM port settings at the wrong baud rate for the terminal program compared to the sketch. (Note that the sketch sets it to 2400 baud)
An alternative would be that the RFID code sends back binary data, rather than ASCII data.
Finally, it looks like the serial port is used both for the RFID and the computer at the same time, which is probably ... somewhat scary. The computer is going to want to pull the serial transmit line one way all the time while you're not sending data, and then RFID chip will very likely fight the computer for it.

Does it say the words "RFID Tag is " before the xxxxx000 , if not you haven't got e speed right.

Thanks I changed the baud rate of the serial monitor and now it is working.