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 trial

iOS Swift Collections and Control Flow Introduction to Collections Working With Arrays

Faisal Alsheikh
Faisal Alsheikh
8,841 Points

I think I wrote the code right but I do not know what is wrong in this challenge

I don't know another answer to this challenge

array.swift
// Enter your code below
var arrayOfInts = [1,2,3,4,5,6]
arrayOfInts.append(7)
arrayOfInts+[8]
arrayOfInts[4]
let fifthItem = arrayOfInts[4]

1 Answer

For task 3 the error message you receive is: Make sure you're assigning the result of retrieving an item from the array to a constant named value

You are assigning the result to fifthItem instead of value