Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

perpetual makayi
8,441 Pointsenumeration and optional in swift 3
Challenge Task 1 of 1
Let's get in some practice creating a basic enum. Declare an enum named Direction with the members left, right, up, down.
Bummer! You need to add member values to Direction
: left, right, up and down
enums.swift
enum Direction {
case Left
case Right
case Up
case Down
}
hi help needed here please no errors but it wont run im confused big time please help
enum Direction {
case Left
case Right
case Up
case Down
}
1 Answer

Jennifer Nordell
Treehouse TeacherHi there! You've capitalized the names of your directions. Take a look at the instructions again. They want "left, right, up, and down". All lower-case. Change the capitalization and your code passes!
perpetual makayi
8,441 Pointsperpetual makayi
8,441 Pointsthanks a lot