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
sanity
2
Take another look at the example in instructions. What is required is to print from text
character with index 6
, not the number six.
Atrox
3
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
ILM
4
please remember that index 6 is the 7th character, so W
Atrox
5
oh, yes arrays start from 0