I don't understand your problem.
When I open the playground, I get the following:
/:
## Exercise - Constants
Declare a constant called `friends` to represent the number of friends you have on social media. Give it a value between 50 and 1000. Print out the value by referencing your constant.
*/
/:
Now assume you go through and remove friends that aren't active on social media. Update your `friends` constant to a lower number than it currently is.
*/
/:
Does the above code compile? Why not? Print your explanation to the console using the `print` function. Go back and delete your line of code that updates the `friend` constant to a lower number so that the playground will compile properly.
*/
//: page 1 of 10 | [Next: App Exercise - Step Goal](@next)
At line 6, I insert the following
let friends = 60
print(friends)
Then I get 60 to display in the log area.
And nothing disappear
/:
## Exercise - Constants
Declare a constant called `friends` to represent the number of friends you have on social media. Give it a value between 50 and 1000. Print out the value by referencing your constant.
*/
let friends = 60
print(friends)
/:
Now assume you go through and remove friends that aren't active on social media. Update your `friends` constant to a lower number than it currently is.
*/
/:
Does the above code compile? Why not? Print your explanation to the console using the `print` function. Go back and delete your line of code that updates the `friend` constant to a lower number so that the playground will compile properly.
*/
//: page 1 of 10 | [Next: App Exercise - Step Goal](@next)
So, how is it you have
6
7
written in the middle ? Is it something you typed here ?