The data may make more sense if you use:
Serial.print(char(mySerial.read());
You are seeing the ASCII codes that the scale is sending. The char() make it print the characters instead of the codes.
The serial input basics tutorial may be of interest.
Screenshot images of code are not the optimal way to post code. Read the forum guidelines. Post your code in code tags. Use the IDE autoformat tool (ctrl-t or Tools, Auto Format) to indent the code for readability before posting code.