Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialUtsah Kapoor
696 PointsCorrect answer but not correct...
So Im doing the swift 2.0 working with arrays task 3 and I got the correct answer but it says I am wrong. Here is my code
var arrayOfInts = [1, 2, 3, 4, 5, 6]
arrayOfInts.append(4) arrayOfInts += [34]
let value = arrayOfInts[6]
1 Answer
Chris Shaw
26,676 PointsHi Utsah,
You're close, as explained in the challenge - array indexes start at index 0 which means you should be looking for the 4th item in the array as that will result in the 5th value.
let value = arrayOfInts[4]
Happy coding!