Which of these statements will work?

$number = 5 * 5 + 1;$number = 26;$number = 2 (6);

Nice! + and * are operators that work with numbers, but the . sign is made for strings.

Whoops! We'd need an operator if we wanted to use parentheses.