I have this:
var alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
println("You should know your \(alphabet)'s")
How do I access a, b, c?
I've tried \(alphabet[0...3])'s and \(alphabet['0', '1', '2'])'s and \(alphabet[0,1,2)'s to no avail.
What am I missing?