Invalid operands of types 'const char [21]' and "float" to binary 'operator+'

Serial.println("The Conductivity is " + voltage); //print the current reading to serial port }|

You cannot use the + operator to concatenate a string and a float. Print them using separate print commands.