Swift - Control Flow
Identify the error in this Swift code:
let count = 10
if count > 5
print("Count is greater than 5")
print("Keep counting")
else
print("Count is 5 or less")