Explore Library
Code QuizBeginner

Missing Type Conversion

Find why combining these types fails.

Codeswift
let count = 3
let label = "Items: " + count
print(label)

What is the bug in this code?