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 trialmichaelesquivias
197 Pointswhen I try to append the items together it says your todo has the wrong value
do you have to put two items together or just one I'm confused
var todo = ["Learn Swift", "Build App", "Deploy App"]
todo.append("Fix Bugs")
1 Answer
Jhoan Arango
14,575 PointsHello Michael:
When using the append method, it will only allow you to add ONE item to the array, at the end of it. If you want to add 2 or more items use the += operator.
var array = ["One","Two","Three" ]
// Adding one Item to the array
array.append("Four")
// Adding 2 or more items to the array
array += ["Five","Six","Seven"]
hope this helps you solve your challenge.