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 trialAry de Oliveira
28,298 PointsSwift
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.
// Enter your code below
var arrayOfInts = [1,2,3,4,5,6,7]
var arrayOfInts.append("8")
1 Answer
Martin Wildfeuer
Courses Plus Student 11,071 PointsThe problem here is that you are trying to append an element of type String
to your array, which, however, is of type [Int]
. As you put 8 in double quotes, Swift infers its type as String. If you want to add an Int
, just omit the double quotes. The following should work as expected:
var arrayOfInts = [1,2,3,4,5,6,7]
var arrayOfInts.append(8)
Ary de Oliveira
28,298 PointsSorry no work
Martin Wildfeuer
Courses Plus Student 11,071 PointsThis is indeed not the entire solution for this task, I just concentrated on the issue you had with the code you posted, that is appending a string to an int array. The assignment asks you to append another int to the array via concatenation.
Give it a try first, feel free to ask if you get stuck, I'll be more than happy to help you then!
Ary de Oliveira
28,298 PointsAry de Oliveira
28,298 PointsNo like i try
Bummer! Make sure you're using the append method to add another to the array. Hint: Append methods are used like this - someArray.append(someValue)