The correct return statement would be return accountbalance + amount;
alternatively i think you could either declare a new variable and assign accountbalance + amount, or you could initialize accountbalance to be accountbalance + amount and return that ( use shorthand accountbalance += amount, shorthand for accountbalance = acountbalance + amount)
personally, i'd stick with return accountbalance + amount.
hope that helped
