The warning appears because you are trying to print an optional value to the console: dictionary values are optionals under the hood since they can be nil if their corresponding and associated keys donโt exist in the dictionary after all. As a workaround, unwrap the optional value before printing it out in order to silence the error and make it disappear once and for all.