this.Type()

WPM

0

RESET

ACCURACY

0

NEW

click to start typing

function reverseString (str) {
	return str.split(' ').reverse().join(' ');
};