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 2.0 Collections and Control Flow Introduction to Collections Working with Arrays

Swift 2.0

Challenge Task 2 of 4

Now that we have an array declared, since it is a mutable array, we can add and remove items. Let's start by adding two more values to our existing array. There are two ways we can add items to an array and I want you to give both a try. Add one item to the array using the append method.

Remember: We invoke methods on an array using a period or dot. After the dot we write out the method name and a value to append in parentheses following the name.

Add another item to the array by concatenating an array. When concatenating, assign the results of the expression back to arrayOfInts.

no work need help

arrays.swift
// Enter your code below

var arrayOfInts: [Int] = [
    1,
    2,
    3,
    4,
    5,
    6,
    ]

    var arrayOfInts: [Int] = [9]

1 Answer

Hi Ary,

I think Christian Kroul's answer in this thread might help you:

https://teamtreehouse.com/community/another-badly-worded-question