Step 13
There will be times where you will need to use multiple methods to create a new string. Over the next few steps, you will use some of the methods you have learned so far to create a new string that uses the camelCase naming convention.
Start by creating a variable called lowercaseWord and assign it the string "camelcase".
Below that lowercaseWord variable, create another variable called camelCasedVersion and assign it an empty string for now.
Below that camelCasedVersion variable, add a console.log() with the string "Camel cased version:" followed by another console.log() for the camelCasedVersion variable.
my soulution that does not work
let lowercaseWord;
lowercaseWord = “camelcase”;
let camelCaseVersion;
camelCaseVersion =“”;
console.log(“Camel cased version:”);
console.log(camelCaseVersion);