Not sure what part of the loop is being raised as not well formed but these should be OK. ``` void foo() { int i; for (i = 0; i < 4; i++) { } // For loop is not well-formed for (int j = 0; j < 4; j++) { } // For loop is not well-formed } ```