Removed missing data from challenge text (#46832)

Removed false information from challenge text
This commit is contained in:
packagespace
2022-07-09 20:42:04 +02:00
committed by GitHub
parent 4b9583acc8
commit eac6a1b9af

View File

@@ -16,7 +16,7 @@ for (let user in users) {
}
```
This would log `Alan`, `Jeff`, `Sarah`, and `Ryan` - each value on its own line.
This would log `Alan`, `Jeff`, and `Sarah` - each value on its own line.
In this statement, we defined a variable `user`, and as you can see, this variable was reset during each iteration to each of the object's keys as the statement looped through the object, resulting in each user's name being printed to the console.