I have a timestamp string that takes the form:
2018-03-06T06:28:39.887Z
and need to format it into something more human readable, I have tried the below date format however the date doesn't parse
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "y-MM-ddTk:mm:ss.SSSZ"
let date = dateFormatter.date(from: "2018-03-06T06:28:39.887Z")
What am I missing with my date format?