Read the following code:

x = 1
(x < 26):
print(x)
x = x + 1

There is an error in the while loop. What should be fixed? (5 points)

Add quotation marks around the relational operator
Begin the statement with the proper keyword to start the loop
Change the parentheses around the test condition to quotation marks
Change the colon to a semicolon at the end of the statement