What does "consecutive statements on a line must be separated by ';'" mean in swift?

Example:

let value = 5
value = 6
This error often occurs when there's a misunderstanding in Swift's syntax or a missing brace.

Solution:

let value = 5 // Ensure the correct use of let/var and proper syntax

Beginner's Guide to Swift