@twostrawsPaul Hudson Hello.
Thanks for the course. Im on day three and have hit a little hiccup. On this page https://www.hackingwithswift.com/quick-start/beginners/how-to-store-ordered-data-in-arrays
There is a code snippet that says
let presidents = ["Bush", "Obama", "Trump", "Biden"]
let reversedPresidents = presidents.reversed()
print(reversedPresidents)
I get this returned.
ReversedCollection<Array<String>>(_base: ["Bush", "Obama", "Trump", "Biden"])
What am i doing wrong?
Thanks
#100DaysOfSwiftUI