
frensky chery
Pro Student 138 Pointsm confused
confused
// Enter your code below
let title = " A Dance with Dragons"
1 Answer

Magnus Hållberg
11,156 PointsThese challenges are picky about spelling, you have a space before the text.
// Your code
let title = " A Dance with Dragons"
// Should be
let title = "A Dance with Dragons"
Just that.