The for next statement is used to display the consecutive numbers from 1 to 10K = 1 For I = 1 to 10 Display k, “ “K = k + 1 Next I The output will be 10 9 8 7 6 5 4 3 2 1

Will the above statement output be correct or
incorrect