Hello, why does toLowerCase not work on the second console.log?
It returns “Rats”.
function lowerCase(text){
//tolowercase
let text2=text.toLowerCase();
console.log(text2)
//tolowercase - Doesn't work
text.toLowerCase();
console.log(text)
}
console.log(lowerCase("Rats"))