fix: remove sentence not needed (#41235)

This commit is contained in:
Randell Dawson
2021-02-23 10:21:58 -07:00
committed by GitHub
parent aa9db73e12
commit b11dd87047

View File

@ -24,7 +24,7 @@ var answer = plusThree(5); // 8
# --instructions--
Create a function `timesFive` that accepts one argument, multiplies it by `5`, and returns the new value. See the last line in the editor for an example of how you can test your `timesFive` function.
Create a function `timesFive` that accepts one argument, multiplies it by `5`, and returns the new value.
# --hints--