Learn String Manipulation by Building a Cipher - Step 5

Tell us what’s happening:

Please let me know whats wrong ive tried multiple variations but i dont understand the elements part.

Your code so far


# User Editable Region

text = 'Hello World'
print(6)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 5

Take another look at the example in instructions. What is required is to print from text character with index 6, not the number six.

How would you print ‘W ’ from ‘Hello World’ is being asked.

‘W’ in this case is the 6th character. So you need to print the 6th character

please remember that index 6 is the 7th character, so W

oh, yes arrays start from 0 :smiley: