It stands for the Root symbol.
Root[f,k]
represents the exact kth root of the polynomial equation f[x]==0.
This was updated in version 12 and more info can be found here http://reference.wolfram.com/language/ref/Root.html
The second root from your solution looks like this in InputForm
Root[-5 - 12 # + #^3& , 1, 0]
You can get the corresponding numeric value with:
Root[-5 - 12*#1 + #1^3 & , 1, 0]//N