Write a statement using a compound assignment operator to add 5 to val (an integer variable that has already been declared and initialized).

LANGUAGE: Visual Basic

CHALLENGE:

Write a statement using a compound assignment operator to add 5 to val (an integer variable that has already been declared and initialized).

SOLUTION:

val += 5