// Log Codecademy in all uppercase letters
console.log(‘Codecademy’);
// Use a string method to log the following statment without whitespace at the beginning and end of it.
console.log(’ Remove whitespace ');
console.log(“Codeacademy”.toUpperCase());
I did the above code and it returned in upper case, but it says its incorrect? What is wrong?