Do only this in the loop(). Watch the serial monitor. It should output the raw data from the GPS.
void loop()
{
while(mySerial.available()) // While there is data on the RX pin...
{
Serial.write(mySerial.read()); // send the data to the serial monitor
}
}