The "Recovery-10.11.6" item is actually a hidden recovery partition on your internal drive that Disk Utility hides from view to "protect" the user. It is odd that the "Apple SSD ....." appears as "disk1" since usually the internal physical drive is "disk0". I just recently had a problem erasing a drive because for some reason macOS/Disk Utility got confused.
When this happens you need to write zeroes to the beginning of the drive to destroy the partition table so the drive then appears as completely unused/blank or "new" to Disk Utility. Having the information from the command line would have provided more details and confirmed these suspicions.
Using the command line (while booted from Recovery Mode or a macOS USB installer) you need to get the drive identifier(s) for the internal drive you want to erase by using the following command:
diskutil list internal
You may see two items listed where one is the physical drive and the other one is a virtual drive. You need to make sure no volumes are mounted on either the physical or virtual drives by issuing the following command making sure to replace "diskX" with the actual drive identifier(s) from the previous command starting with the virtual drive first (if it exists):
diskutil unmountDisk diskX
Do this for both the virtual drive and the physical drive. Once all volumes have been unmounted you can write zeroes to the beginning of the drive using the following command making sure to replace "diskX" with the drive identifier for the physical drive:
sudo dd if=/dev/zero of=/dev/diskX bs=100m count=10
After this command completes successfully you should be able to erase the physical drive using Disk Utility.