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 Enumerations and Optionals in Swift Introduction to Enumerations Creating an Enum

enumeration 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

enums.swift
enum Direction {
case Left
case Right
case Up
case Down
}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi 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! :sparkles:

thanks a lot