Skip to content

Commit 7ebbe00

Browse files
committed
fixed caps on problem prompt
1 parent 63c80a3 commit 7ebbe00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/problems/arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ module.exports = [
472472
{
473473
name: 'Array.filter()',
474474
time: 10,
475-
prompt: `return an array of the numbers greater than 5 in 'fruits' using 'Array.filter()'`,
475+
prompt: `Return an array of the numbers greater than 5 in 'fruits' using 'Array.filter()'`,
476476
given: `const numbers = [1, 1, 2, 3, 5, 8, 13, 21];\r`,
477477
answer: `const numbers = [1, 1, 2, 3, 5, 8, 13, 21];
478478
const overFive = numbers.filter(num => num > 5);

0 commit comments

Comments
 (0)