In (Basic JavaScript: Store Multiple Values in one Variable using JavaScript Arrays)
Example given is
var sandwich = ["peanut butter", "jelly", "bread"].
Whereas solution to challenge is
var sandwich = ["peanut butter", "jelly", "23"];
Shouldn't a semicolon end the variable in the example and not a fullstop?
In (Basic JavaScript: Store Multiple Values in one Variable using JavaScript Arrays)
Example given is
var sandwich = ["peanut butter", "jelly", "bread"].
Whereas solution to challenge is
var sandwich = ["peanut butter", "jelly", "23"];
Shouldn't a semicolon end the variable in the example and not a fullstop?