Build a string formatter step 13 javascript how to solve this

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);

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!