Hi. I am not sure what your question is but this lesson covers how variables in javascript are named using camelCase. This means that the entire first word is lower case and only the first letter in subsequent words are upper case. Example: thisIsTheNameOfMyVariable
It looks as if you fixed the third variable name in the Variable declarations correctly, now you just need to fix the first one in the Variable declarations (for clarification: Cap and Var are 2 different words) and all 3 in the Variable assignments. Hope this helps.
So this challenge aims to teach variable naming conventions in javascript. There are a lot of different kinds of naming conventions and javascript uses camelCase.
Say you want to give your variable a name of: I like eating cheese. In camelCase, the first letter of the variable would be lowercase, there would be no spaces between words, instead each word after the first would be capitalized. So your variable name becomes: iLikeEatingCheese
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.