Is the FCC site down?

I can not run the tests or move forward through the course as of about an hour ago. It seems like FCC is locking up and stuck. Anyone else experiencing issues today with the site locking?

FCC is not down. What browser and version are you using?

Webpage not responding, shut down or wait. I’m using Chrome

I’m working on JavaScript. The page that is stuck is Iterate Odd Numbers With a For Loop. I did click on the help button and it did go to the other page. The issue is only occurring when I hit the run test button. When I hit reload I get a blank screen.

// Setup

var myArray = [];

// Only change code below this line.

for (var i = 1; i < 10; i =+2){

myArray.push(i);

}

Just as I suspected, you have created an infinite loop. You have a typo in your for loop statement. Make sure you are using += and not =+. The latter just keeps assigning the value 2 to i, so it never changes.

THANK YOU!!! All fixed!