Testing SoftwareSerial port loopback *Help me pls*

Hello, I am new to all this and have been searching for a test for two days and finnaly am posting my question here.

I want to send data to serial pin 11 and revceive this on pin 10 and then print the received data back to my serial monitor running on my laptop connected via USB to my arduino.

So when I remove the jump wire between pin 10 and 11 there will be no data displayed.
Please help me as this is driving me crazzy.

    if (ss.available())
        Serial.write(ss.read());

SoftwareSerial doesn't support a loopback because both the sending and receiving functions blocks the processor completely. So while you're sending a byte you cannot receive anything and while you're receiving a byte not one bit will be sent out.