Hello
I have this as answer :
// Setup
var a;
a = 7;
var b;
// Only change code below this line
b = 7;
a = b;
but still I see this annoying test error
1
2
3
4
5
6
7
8
9
10
// running tests
a
should be assigned to
b
with
=
. // tests completed
What did I do wrong here ?