Can you spot the mistake in this code snippet?

The city variable is uninitializedThe state variable is uninitializedWe can't use += with string-type valuesWe can't declare variables in a single line

Excellent! When we want to initialize multiple variables in a line, we need to assign values to each of them or only the last variable gets a value.

Not quite! When we want to initialize multiple variables in a line, we need to assign values to each of them or only the last variable gets a value.