Tell us what’s happening:
Describe your issue in detail here.
Now, How i use bracket notation here, because if i put v in bracket it is not working. Your code so far
You are just adding the letter itself…this is not how it is supposed to be done. Look at the example the challenge gives you. This should help in figuring out what you need to do
Here you can see Ada is the firstName variable, and the secondLetterOfFirstName is using firstName[1]. This means that the letter d is going to be the value of the variable. Because counting starts at 0.
Here you can see Ada is the firstName variable, and the secondLetterOfFirstName is using firstName[1]. This means that the letter d is going to be the value of the variable. Because counting starts at 0.
Its going to fail because you are not using the right number. Remember counting starts at 0 and you need the number that represents v. So when you use lastName[1] you are getting the o
start counting at 0 so l is going to be 0,
o is going to be 1
continue from there